vote up 1 vote down star

I would like to create a javascript modal pop up window to get some values from a user in a ASP.Net 2.0 webpage.

The basic idea is this. When a user clicks a button, a modal window will come up and ask 3 or 4 questions. The asp.net page will not be able to be changed while this window is up. Once the questions have been answered I need to grab the values from this window so the asp.net page has access to them and can handle them in the code behind.

Can I please get some examples on how you would implement this scenario.

flag

3 Answers

vote up 3 vote down check

Have you looked at the ModalPopupExtender?

http://www.asp.net/ajax/ajaxcontroltoolkit/samples/modalpopup/modalpopup.aspx

link|flag
Hey that is pretty neat. I'm looking for multiple ways. Do you know of a non ajax way? – Joshua Hudson Oct 17 '08 at 0:54
vote up 2 vote down

The easiest methods would be to either use ModalPopupExtender as mentioned by Jon or potentially use jQuery's thickbox or something similar as well.

Otherwise, you could roll your own JS to do it.

link|flag
vote up 1 vote down

You could use the javascript function 'window.showModalDialog', but it only works in Internet Explorer.

You can pass in and return any number of variables by wrapping them up into an object.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.