Link to home
Start Free TrialLog in
Avatar of Dileepgn
Dileepgn

asked on

Bringing up a modal window from an aspx page

Hi,

I want to bring up a popup window(modal window) in an aspx page , while clicking on a link button and don't allow to click any where else until this form is closed.

I am working with C#, ASP.Net and Java Script.

Thanks
RD
Avatar of justinbillig
justinbillig

http://www.eglop.com/Contents/Downloads1.asp

There is a site my instructor put up with coding examples. Download the code for the ASP.Net pages( Modal with Web Services )

ASKER CERTIFIED SOLUTION
Avatar of rdivilbiss
rdivilbiss
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
window.showModalDialog("test.aspx", window);

Should work if I am not totally daft here...

Regards,
Max.