refresh opner window
-
i have three pages in asp.net. 1.from first page(first.aspx) display second page (second.aspx) in newwindow using window.open() 2.then from second page(second.aspx) display third page(third.aspx) in newwindow using window.open() and close window 3.then from third page(third.aspx) close window and refresh first.aspx
Mahendra
-
i have three pages in asp.net. 1.from first page(first.aspx) display second page (second.aspx) in newwindow using window.open() 2.then from second page(second.aspx) display third page(third.aspx) in newwindow using window.open() and close window 3.then from third page(third.aspx) close window and refresh first.aspx
Mahendra
As you close the second window, you have no way of reaching the first window from the third window. You have to get the reference to the first window, and pass it from the second window to the third window before you close the second window.
--- b { font-weight: normal; }
-
As you close the second window, you have no way of reaching the first window from the third window. You have to get the reference to the first window, and pass it from the second window to the third window before you close the second window.
--- b { font-weight: normal; }
mbsum wrote:
i am not getting solution can u explain me if u have time thanks Mahendra
After you have opened the third window, wait for it to load, so that you can get the value of window.opener from the second window to the third window. Perhaps you should run a script onload in the third window that stored the reference window.opener.opener and then closes the second window. -- modified at 2:31 Wednesday 9th August, 2006
--- b { font-weight: normal; }