Asynchronous threads in web app.
Given some database queries and server tasks that deals with large result sets and cause the calling application to be unresponsive, what is a good way to make asynchronous calls in ASP.NET web applications? For e.g. creating a background thread and use it to run a query to fill a DataSet or a thread that involves intense server side processing. The technique used in form application is not applicable here since Page class does not contain a BeginInvoke() method to make asynchronous calls. Anyone can offer some advice?
Yubo
|