ASP.NET MVC question
Posted
by Jeroen
on Stack Overflow
See other posts from Stack Overflow
or by Jeroen
Published on 2010-05-16T15:12:24Z
Indexed on
2010/05/16
15:20 UTC
Read the original article
Hit count: 202
I want the following structure in my ASP.NET MVC solution;
Controllers/HomeController.cs Controllers/Administration/AdministrationController.cs Controllers/Administration/UsersController.cs
Views/Home/Index.aspx Views/Administration/Index.aspx Views/Administration/Users/Index.aspx Views/Administration/Users/AddUser.aspx etc.
How can I make it work so I get http://localhost/Administration/Users ? Do I need a route for this, or create a new Administration area?
Thanks.
© Stack Overflow or respective owner