Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Directory Structure in Asp.Net

0.00/5 (No votes)
27 Jun 2011 1  
ASP.NET 2.0 uses a new set of predefind Directory names for special work. In general, the ASP.NET directory structure can be determined by the

This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.

ASP.NET 2.0 uses a new set of predefind Directory names for special work. In general, the ASP.NET directory structure can be determined by the developer's preferences. But there are a few reserved directory names.

Here is the list of special directory names used by ASP.NET 2.0

  • App_Browsers is used to place browser specific defination files for the site
  • App_Code is the directory used to store the raw code.The classes in this folder are automatically compiled into one assembly which is accessible in the code in every page in the site.
  • App_Data is the default director for the datastorage or database like Acces, SQL server express etc. This directory has write permission so thatdata can be inserted in the data.
  • App_LocalResources folder contains the localized resource files for each page in the site.
  • App_GlobalResources holds the resx files for the localized resource available to every page in the site.
  • App_Themes folder is used to store the themes of the site.
  • App_WebReferences folder is used to store the discovery and WSDL files of the refrences of the web services consumed by site.
  • Bin folder is used to store the compiled assemblies of the applictaion and also the referenced assemblies which are not installed in the GAC.

 

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here