MVC路由错误404

时间:2012-05-20 00:05:34

标签: asp.net-mvc asp.net-mvc-routing

我做错了什么?

我的默认/用户路线

  routes.MapRoute(
            "User", // Route name
            "{controller}/{action}/{id}", // URL with parameters
            new {controller = "User", action = "Index", id = UrlParameter.Optional} // Parameter defaults
            );

我想分开代码,所以我创建另一个控制器“UserProducts”

我的路线

 routes.MapRoute(
            "UserProducts", // Route name
            "user/products/{action}/{id}", // URL with parameters
            new { controller = "UserProducts", action = "Index", id = UrlParameter.Optional } // Parameter defaults
            );

我的UserProducts控制器中有ActionResult索引,但是我的

localhost/user/products

不起作用:

Error 404 - The resource cannot be found.

1 个答案:

答案 0 :(得分:5)

您可能错误地订购了它们。注册这些路由的顺序很重要,第一个映射将覆盖后面的路由。将UserProducts行放在User的上方。