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

Possible to refresh another browser?

Status
Not open for further replies.

jasontektips

Programmer
May 30, 2003
23
SG
Hi,

Is it possible to refresh another browser from the current browser? Eg. I have a session in browser A and after clicking a button, it'll launch browser B. After some processing in browser B, I want to refresh Browser A. Something like browser A is a Display "select" from database, and browser B is a "Add" or "Delete"
to/from the database. After "Add"/"Delete", I want it to display the outcome in browser A.

Appreciate any sample code if this is possible.
Thanks.

Jason
 
Hi,

You can try this, In the browser B you can call a JavaScript function after SUBMIT which reloads browser A

Browser B

Code:
<script language="javascript">
    opener.location.reload();
</script>


Cheers
-Venu
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top