Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I refresh a page in other frame?

Status
Not open for further replies.

DiegoErnesto

Programmer
Nov 28, 2001
41
EC
Hi folks;

I have an application WEB that display information of a month selected and report type from menu frame. The body frame display the report. I want to change the month from menu frame and to refresh the report in body frame.

Thanks.

 
Put the javascript in the menu frame to load the report into the body frame.
Code:
...
top.body.location.href = "report_june.html";
...
 
Hi rac2

Thanks.

but, it's a report .asp and this take the month from session variable; I want to change month, this changed the session variable and refresh report. And this report is variable.

Thanks, for you help.

 
Maybe you should try some method using the JS object heirarchy like:

document.frame(<name>).refresh ;

End

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top