
Benefit of App_code
Hi... i want to know the benefit of App_code and why we use it.



Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ChandrakerPosted Jul 13, 2011, 10:26 PM
Note: adding large number of files/classes in app_code may hit your application compile time performance. You can add n number of files and folders in app_code but it is always suggested to keep only few files here. If you are looking to add your business and data access layer files in app_code, I would suggest you to go for class library.
Gurjeet SinghPosted Jul 13, 2011, 2:24 PM
Jiteendra SampathiraoPosted Jul 13, 2011, 1:20 AM
We can store the Source code(.cs,.vb file) file in the app_Code folder, it will be automatically compiled at run time...
So it contains business objects and shared classes.
refer Link1
Link2
Advantages: reusability, application performance increased etc..