Threading in ASP.Net Application
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
hi all, can anyone tell me about Threading in ASP.Net..?? is it possible to use Threading in Web Application..?? Mihir..
It depends. REmember that your app spins up whenever it gets sent a request for a page. We use threading for constant background tasks, such as indexing, but threading won't help you if it's part of a codebehind, because the thread that runs the page code would need to be forced to hang around waiting for the thread, and what's the use of that ? Christian Graus - Microsoft MVP - C++