May 2010
Intermediate to advanced
1752 pages
41h 17m
English
When you create a new ASP.NET Web Site project, your project may contain any number of specifically named subdirectories, each of which has a special meaning to the ASP.NET runtime. Table 32-3 documents these special subdirectories.
| Subfolder | Meaning in Life |
|---|---|
| App_Browsers | Folder for browser definition files that are used to identify individual browsers and determine their capabilities |
| App_Code | Folder for source code for components or classes that you want to compile as part of your application. ASP.NET compiles the code in this folder when pages are requested. Code in the App_Code folder is automatically accessible by your application |
| App_Data | Folder for storing ... |