Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Contributor
6800 Points
1105 Posts
Jul 30, 2009 08:14 PM|LINK
Also make sure you have a sleep in the button click as in my code sample.
Thread.Sleep(3000);
Just beware not to keep it in production code, that's the only reason why i had this line scratched out in the code i posted :-)
Otherwise, the page will load too fast before you see the updateprogress. It's just to fake your long running process.
alessandro
Contributor
6800 Points
1105 Posts
Re: how to load gridview after the page is completely loaded?
Jul 30, 2009 08:14 PM|LINK
Also make sure you have a sleep in the button click as in my code sample.
Thread.Sleep(3000);
Just beware not to keep it in production code, that's the only reason why i had this line scratched out in the code i posted :-)
Otherwise, the page will load too fast before you see the updateprogress. It's just to fake your long running process.