Hi all,
First of all, I am using Lotus Domino Designer for development.
I am facing a problem on refreshing parent window from child window. Error pop-up that : [The page cannot be refreshed without resending the information.]
My situation:
- parent window will call child window after click a button
- use will enter information in child window and then save
- after saved, the new created document do not display on the displaying view
- so, I add-on javascript in the OnUnload() for the save button of child window
- which is :=
*******************************
if(window.opener != undefined){
opener.location.reload();
}
else{
self.parent.document.location.reload();
}
********************************
- the results:
a.If is new document, everything is going successfully
b.If is not new document, error pop-up (the page cannot be refreshed without resending the information)
c.The above 2 (a & b) are tested in InternetExplorer.
d.If I test using Mozilla firefox, the another way round results are appear.
Anyone can help me?? I am lost idea!


