Search code examples
c#.netweb-applicationscil.net-runtime

.NET Web App compilation on first request


I have a short question, once I deployed my Web App to IIS and when i make a first request it is compiled to CIL and stored in "\Temporary ASP.NET Files" folder. After that first request, is there a full compiled app or only used part of it?

I have read a lot of articles about that but that is not clear enough for me.


Solution

  • Depending on compilation settings in web.config it either all views/pages will be compiled or only views that used to render pages.