In ASP.NET my app_code folder has a ton of .cs files in it. It would be great if I could organize them by the module they belong to in my project so I am not scrolling forever when I expand the app_code folder. How do you organize yours?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use folders…
Or move all your classes out to a Class Library for your Web site and reference that library.
Then properly folder & namespace all your classes there.
In the past, where I’ve had to use the App_Code folder I’ve mirrored the folder structure of the main site for anything specific and had a common folder for everything else
e.g.