Hi,
Each row on my web page has a hyperlink.
When I click on each hyperlink, I would like to use the same popup window for all hyperlinks. I try to avoid multiple popup as well.
My problem is: When I open the first link, the popup window gets open.
When I open the second link, the popup window is no where to be found. I minimize all my browsers and there it is, my popup window is on my desktop.
Here is my code:
<asp:Hyperlink....
NavigateURL='......' onclick="window.open(this.href, 'popupwindow', 'width=800, height = 800'); return false;">
Thanks so much for your help.