Popup Window

  • Thread starter Thread starter CG
  • Start date Start date
C

CG

Hi,

I have an ASP.NET application.

On one of my pages I have a link to a popup. This popup
has a link. When the user clicks this link my popup closes
and another Popup is displayed.

In this second Popup I want to redirect the user to a
fifferent page in my application when the popup closes. Is
this possible as another popup opened this second popup so
I cannot use 'window.opener'.

Any advice is much appreciated.

Thanks,
C
 
When you open up the second pop up, maybe the first pop up can pass in its
window.opener via some function on the second pop up. That way the second
pop up would have a reference to the original window....
 
Back
Top