Microsoft.NET Question:
Download Questions PDF

How to spawn a thread?

Microsoft.NET Interview Question
Microsoft.NET Interview Question

Answer:

Threads are processed differently depending on IIS5. or IIS 6 is used. For each request that comes in, a new instance of the appropriate HttpApplication-derived class is created, as are the associated modules for that app. To avoid reallocating apps and modules too often, each AppDomain maintains a pool of apps and modules. The maximum size of the app pool is the same as the size of the thread pool, so by default, up to 25 requests per worker process can be processed concurrently, each with its own app and module set.

Download Microsoft.NET Interview Questions And Answers PDF

Previous QuestionNext Question
Explain What languages does the .NET Framework support?How to redirect tracing to a file?