by Santhakumar Munuswamy
Posted on 25 November 2014
ASP.NET
Introduction
In Web Application should have a good planned solution explorer directory structure you design. Asp.net introduced special directory list below.
BIN Directory
It is contains all the precompiled .net assemblies like DLLs that the Asp.net web application uses.These assemblies can include precompiled class as well as other assemblies referenced by the class
App_Code Directory
It is contains source code files that are dynamically compiled for use in your application. These code files are usually separate components or a data access library
App_GlobalResources
It is stores global resources that are accessible to every page
App_LocalResources
It is serves the same purpose as app_globalresources, except these resources are accessible for their dedicated page only
App_WebReferences
It is stores refereces to web services that the web application uses
source from my old blog: Readmore