Reputation: 24308
Can anyone tell me the easiest way to display a jQuery dialogafter a postback occurs.
Basically i am showing some asp.net controls inside my jQuery dialog and when i click something an event occurs in asp.net
But of course after the postback has finished the screen is brought back up but WITHOUT the jQuery dialog.. This is by design I presume but wondered if there was a way around this?
I am using the updatepanel (asp.net).
Any ideas really appreciated?
Thanks
Upvotes: 0
Views: 88
Reputation: 29831
You could use the ScriptManager.RegisterStartupScript
to load the popup. See documentation
Upvotes: 3