Previously, in ASP.NET, the pages and the code used to be compiled dynamically and then cached so as to make the requests to access the page extremely efficient. In ASP.NET 2.0, the pre-compilation feature is used with which an entire site is precompiled before it is made available to users.
There is a pre-defined folder structure for enabling the pre-compilation feature:
- App_Code: stores classes
- App_Themes: stores CSS files, Images, etc.
- App_Data: stores XML files, Text Files, etc.
- App_GlobalResources: stores all the resources at global level E.g. resx files, etc
- App_LocalResources: stores all the resources at local/Page level

0 Comments:
Post a Comment