Hi!
i'm displaying some message in modalpopup extender, now i want hide that popup automatically after some seconds ....
How to accomplish this,,, please help me out..
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
syed afrozPosted Jun 23, 2010, 9:52 AM
ProgressBarModalPopupExtender.show();
System.Threading.Thread.Sleep(2000);
ProgressBarModalPopupExtender.Hide();
please suggest me any way to get rid of this..
Joe PoolPosted Jun 22, 2010, 9:34 AM
From parent, when time limit is expired, call modalpopup.Close() from your time event.
From the modal form, disable the timer and call Close() from your time event.