What exactly is Appdomain recycling

Posted by kudlur on Stack Overflow See other posts from Stack Overflow or by kudlur
Published on 2008-09-01T07:24:22Z Indexed on 2010/05/28 15:01 UTC
Read the original article Hit count: 153

Filed under:

Hi, I am trying to figure out what exactly is Appdomain recycling? When a aspx page is requested for the first time from a DotNet application, i understand that an appdomain for that app is created, and required assemblies are loaded into that appdomain, and the request will be served. Now, if the web.config file or the contents of the bin folder, etc are modified, the appdomain will be "recycled". My question is, at the end of the recycling process, will the appdomain be loaded with assemblies and ready to serve the next request? or a page has to be requested to trigger the assemblies to load?.

© Stack Overflow or respective owner

Related posts about ASP.NET