Is it possible to add APP_Code folder in web application project in Visual Studio?
No, it is not possible to add an App_Code folder in a web application project in Visual Studio. The App_Code folder is specific to ASP.NET Web Site projects, and it is not supported in the structure of a web application project.
In a web application project, you typically add code files to specific folders within the project structure based on your desired organization, such as separate folders for controllers, models, views, or any other custom structure you define.
Unlike ASP.NET Web Site projects, web application projects follow a project file-based approach, where the project structure is defined and managed explicitly in the project file (.csproj or .vbproj). This provides more control over the structure and allows for better organization and management of code files.
In a web application project, you can create folders and add code files directly to those folders within the project structure. This gives you the flexibility to organize and manage your code files according to your specific requirements.
So, in summary, while the App_Code folder is not available in a web application project in Visual Studio, you can achieve the same organization and separation of code files by creating and using appropriate folders within the project structure.