Pages are served in separate processes or threads

S

Shahid Siddiqui

I want to know that whether the asp.net pages are served through separate
threads or separate processes?
 
C

Cowboy \(Gregory A. Beamer\)

This will depend a lot on the setup in IIS. Different sessions are thrown
onto different threads. Not sure if this is a firm rule, but you will
definitely encounter different threads when you have two simultaneous
requests. The CLR process that handles .NET is one process, but you will see
that different applications can run in an isolated manner, which will
involve different memory spaces and therefore different processes (at least
for the parts of the application that are run in the IIS process space(s)).
On a multi-tiered app, you can have requests from multiple apps hitting the
same process, so the rules can be blurred.

Hope this helps.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top