I am facing the same probelm, can you please help me out?
Here is my code.
Following code is to open popup window:
function OpenInstitutions(sURL)
{
var newwindow;
newwindow = window.open(sURL,"Institutions","toolbar=no,locati on=no,scrollbars=yes,statusbar=no,height=600,width =870,resizable=yes");
if (window.focus) {
newwindow.focus()
}
}
Following code is to close popup and refresh parent and focus.
function SaveSetting()
{
alert("Settings have been saved successfully.");
var url = "CalInstitutions.aspx";
opener.location.reload(true);
//opener.history.go(0);
opener.focus();
self.close();
}
The above is working, but it is showing following alert message in parent window.
"The page cannot be refreshed without resending the information again. Click Retry to resend the information. CLick Cancel.... ".
I appreciate your great help.
Thanks in advance.
[email protected]