4

我正在使用 ASP.NET MVC 4 开发一个 Web 应用程序,我想按以下方式组织我的控制器和视图:

/Controller    
    /Admin
        /LessonController.cs
        /ExerciseController.cs    
    HomeController.cs

/Views
        /Admin
              /Lesson
                   /Index.cshtml
        /Home
              /Index.cshtml

我尝试了以下代码来注册路由,但它不起作用:

public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
            );

            routes.MapRoute(
                name: "Admin",
                url: "Admin/{controller}/action/{id}",
                defaults: new { controller = "Lesson", action = "Index", id = UrlParameter.Optional }
                );

        }

你有什么建议吗?

4

2 回答 2

10

您可以使用areas,它们是为这种类型的隔离而设计的,并且会给您某种开箱即用的分离:

/Areas
     /Admin
         /Controllers
             /LessonController.cs
             /ExerciseController.cs    
         /Views
             /Lesson
                 /Index.cshtml
             /Exercise
                 /Index.cshtml
/Controllers    
    /HomeController.cs
/Views
    /Home
        /Index.cshtml

如果您不想遵循 ASP.NET MVC 支持的标准约定,则必须write and register a custom view engine.

于 2013-01-16T21:47:47.727 回答
1

交换您的路线,使管理员路线高于默认路线,然后重新启动应用程序。

于 2013-11-18T11:42:27.553 回答