ASP.NET MVC Folder Contracts

ASP.NET MVC projects comply with naming conventions for folders, models, views, and controllers. For other code (e.g. Action Filters, Delegating Handlers, etc.) Is there a best practice as to where to find them in the project folder structure?

+3
source share
2 answers

A good way to find out is to check what the best use cases are to see open source projects. The IIRC NuGet Gallery was written by the Asp.Net MVC guys, so it would serve as a good example of what they consider best practice, while still being the actual product:

https://github.com/NuGet/NuGetGallery

, FilterAttributes, HtmlHelpers .. https://github.com/NuGet/NuGetGallery/blob/master/Website/RequireRemoteHttpsAttribute.cs

, Phil Haack Asp.Net MVC, GitHub , .

+3

. , . , , :

, asp.net mvc. , . asp.net mvc 3

+1

All Articles