ASP.NET Application Understanding
I am trying to learn the details of ASP.NET Application and bit confused about my understanding on some topics; please clarify if you think I am wrong somewhere.
An Application domain is created when a first request is received at the web server.
- 开发者_StackOverflow中文版
Multiple Application Domains are created for simultaneous request when existing Application domains are found busy.
An Application domain remains alive and reused for further request. This Application domain can shutdown due to server restart or any Modification/Update in Web application files
An Application pool can hold anywhere from 1 to 100 Application domains.
精彩评论