AppDomain In Asp.net

  • Thread starter Thread starter batista
  • Start date Start date
B

batista

Hi,

I want to know the concept of appdomain in asp.net.

I mean, wat happens behind the scenes?

How many appdomians and processes are loaded?

Plz tell me.

Bye.
 
You can consider an Application Domain to be an 'isolation level'. Each
ASP.NET application will run in its own application domain, but under the
same process, aspnet_wp.exe. So, you can have 7 ASP.NET applications
running, each will have its own app domain, but they run under
aspnet_wp.exe. This means that the application in each application domain
will have its own variables, classes, objects and blah blahs. It doesn't see
anything going on in the other application domains.

HTH
Altaf
 

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

Back
Top