I want to show a modal popup when a user click on an asp button. The user must select an option of a panel. The value of the option selected must be saved to an input hidden and then the asp.net button must do a PostBack.
Can I do that?
Thank you!
|
I want to show a modal popup when a user click on an asp button. The user must select an option of a panel. The value of the option selected must be saved to an input hidden and then the asp.net button must do a PostBack. Can I do that? Thank you!
| ||||
|
feedback
|
|
It is possible for a ModalPopupExtender to be displayed using a postback. You'll need an invisible target control. The extender is attached to this hidden control.
In your message handler in code-behind, you'll show the ModalPopupExtender:
And in the code you're using to dismiss the Modal, call the ModalPopupExtender's Hide function:
I use this method for showing a modal that displays detailed data that I retrieve from a database based on what's selected in a GridView. | ||||
feedback
|
|
Add your Button or LinkButton
Add a Panel to hold your options with a DropDownList
Add your ModelPopupExtender
Then add your code behind to the SaveBtn Button
| |||
feedback
|
|
Finally, I've decided to use jQuery to show a ModalPopUp. The following question has the answer to this question: http://stackoverflow.com/questions/2325431/jquery-uis-dialog-doesnt-work-on-asp-net If you are not agree, tell me. | |||
|
feedback
|