Use of App_Code Folder
In older .net versions, App_Code Folder help to reorganize and make the code simple for the programmer.
App_Code Folder is a default folder that is provided with the asp.net applications. The files inside it are compiled automatially whenever you change anything within them. All classes in this folder are referenced automatically in the rest of the application.
1) One of the major advantage of App_Code Folder is, if you put class files inside that , then you don't need to compile .
This means, whatever files inside it are all PRE-COMPILED.
2) Second advantage is, sometimes we have to give right-permission previlages if we create our own folder. But in App_code folder, you don't need it.
hi,
It is very nice definition.
Sample Program:
FileName:Default.aspx.vb
App_Code Folder Class Name:classname.vb