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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Refresh another page

Status
Not open for further replies.

discusmania

IS-IT--Management
Oct 24, 2000
158
AP
Hi guys....

Let say i have 2 pages (A and B).Iant to refresh page A by click a button in page B Is it possible to do that??

Ron
 
At one time, if you are using one user interface that is browser and viewing a page, whaetever you can do is with that browser only.
Yes you can open a new window by clicking the button and
load that page-B.Now to refresh page B, you have to click refresh of that user agent.Not the first one-A. Rushi Shroff Rushi@emqube.com
"Life is beautiful."
 
hi.. thanks for the reply.
Actually what i want to do is, let say user already fill in some information in page A and they to check something for example product code, so they will click a button and page B will be open with all product name and codes and radio button repectively. the user then will check on the desired radion button and click a button pick. once 'pick' is clicked page B will be closed and page A will be refresh will the value brought from page B. I know i can use redirect method, redirect all parameters from page A to B and back from B to A. But my problem is there're to many parameters to pass. Is there any other way to do this. The only way i can think is by refresh page A from page B.

Regards,
Nor
 
Actually what you are telling is refreshing parent window from child window.

Actually I have seen this happening at Monster.com but i dont have a clue how to do it.

For sake of siplicity you can adopt a easy user interface but NOT opening a new window. Rushi Shroff Rushi@emqube.com
"Life is beautiful."
 
window.location.reload();

will do it, so that if you open a child window with the following:

var x = window.open(url,windowHandle,options);

then you could refresh the window from the parent by saying:

x.location.reload();

:)
paul
penny1.gif
penny1.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top