vote up 1 vote down star

I'm using Microsoft AjaxControlToolkit for modal popup window.

And on a modal popup window, when a postback occured, the window was closing. How do i prevent from the closing action of the modal popup?

flag

71% accept rate

4 Answers

vote up 2 vote down

You can call Show() method during postback to prevent the modal popup window from closing

MyModalPopoupExtender.Show()

link|flag
vote up 1 vote down
protected void Page_Load(object sender, EventArgs e)
{
    if (Page.IsPostBack)
    {
        // reshow
        MyModalPopup.Show()
    }
}
link|flag
vote up 0 vote down

i guess that works but not in my case. i have a user control that opened in a modal popup and this user control makes postback itself. so in that user control i have no modal popup property.

i guess, i have to create an event for my user control, and the page that opens the modal popup have to reopen it in this event.

link|flag
vote up 0 vote down

Hello,

Like you prolly already know, the modal popup is clientside only, yeah you can gather informations in it during the postback, but if you do a postback he will hide 100% of the time.

Of course, like other proposed, you can do a .show during the postback, but it depends on what you need to do.

Actually, I don't know why you need a postback, if it's for some validations try to do them clientside.

Could you tell us why you need to do a postback, maybe we could help you better ! :)

link|flag
Hey, thanks for your answer but I really don't remember the problem :) I guess we got rid of it. – yapiskan Feb 12 at 19:54
hahaha !!! ok then XD Maybe you could post your solution (the way it's working atm) if you don't mind. I'm pretty curious about the case and I would like to see how you can do it! – ForceMagic Feb 12 at 20:36

Your Answer

Get an OpenID
or

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