tags:

views:

13

answers:

1

I am opening a popup window using and passing some array of parameters

window.showModalDialog("Test.aspx", MyArgs, WinSettings);

in the Test.aspx i have button, on button click i have "Response.write("Test") when i click on the Test button a new window is getting opened. Can this be avoided?

Please help

A: 

The best I can come up with is to make an iframe-page that simply load Test.aspx into the iframe. However, then you need to pass, or access, the MyArgs array to to the page in some manners.

Torbjörn Hansson