Does my ASP.NET MVC application require an "admin area"?

I basically do a shopping cart in asp.net mvc. I am adding an admin section where administrators can:

  • CRUD for products.
  • CRUD for users.
  • RUD when ordering.

Do I need to create an administrator Areain the mvc project for administrators, is it suitable for my needs? What are the benefits Area?

+3
source share
1 answer

Area. , , , . , , , ProductController, a UserController a RUDController, AuthorizationFilter . , , . , , .

: MVC, Rob Conery, , . . , : http://blogs.msdn.com/b/rickandy/archive/2011/05/02/securing-your-asp-net-mvc-3-application.aspx

+4

All Articles