GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Microsoft  >  Ado.NET

 Print  |  
Question:  How many App Domains an ASP.NET Worker Process creates if suppose 10 different users are logged into the web site



January 01, 2007 14:04:30 #1
 nishant2200   Member Since: January 2007    Total Comments: 3 

RE: How many App Domains an ASP.NET Worker Process cre...
 
One AppDomain is created in the aspnet_wp.exe worker process per website. Inside that appdomain, user's state is kept separate from each other, and from then on server memory side state management can be segregated on basis of Session, Profile etc.
     

 

Back To Question