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

refreshing opener page won't work.

Status
Not open for further replies.

lovekang

Programmer
Feb 16, 2006
86
KR
I have opener page which shows data from database.
the popup page updates the data.

the opener page is just blinking.

of course in the popup page I tried to refresh the opener by
window.opener.location.reload();

and I've tried the below in the opener page.
<%
response.setHeader("Cache-Control","no-store");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", 0);
%>

only when I right click and select "refresh" , the page is refreshed.

what's the problem?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top