Click here to Skip to main content
15,892,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to use Application.DoEvents() In ASP.net

We Use Application.DoEvents()In WinForms To Wait Code

How To Use It In ASP.Net
Posted

1 solution

You don't, because it can only be used in windows applications to force processing of the messageloop. It is seen as a bad practice to do this in windows applications but would really have no use in an asp.net page. You probably want to return something to the user to show while processing is busy. Just search on something like that and have a look at the examples.

Good luck!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900