I want to use threads in ASP.NET web application. Is it possible to use threads like we use in windows forms application? or what would be the best approach to handle different tasks on the same page which are very time consuming and all the task are inter dependent at the one point.
Thanks in advance.
If .NET 4.0 is an option, I suggest you take a look at the new
Taskclass. Tasks can be short or long running and you can link tasks any way you like or have them run in parallel with no dependencies.