There is no DoEvents in ASP.Net webpages because they don't have a message loop. What's on your mind is perhaps "real" multithreading where page postback returns immediately while server continues work in background thread? If so you just have to read a general tutorial about multithreading. For special cases of thread interaction try the first hits here.
The special 'thing' about ASP webpages is also that client side 'runs' independent of server side and enables you to use client side scripting that also connects with servers to make better user experience, you perhaps heard of AJAX, that's what this is about.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.