带有起始编号的ASP.NET MVC路由

时间:2012-03-07 21:33:59

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

在C#中,当你尝试使用数字时,你不能声明控制器(或任何类或变量)类会在类的前面放置一个下划线,如_5Star。

那么如何映射http://localhost/5Star以转到控制器FiveStar的Index操作?

控制器没有“ActionName”属性

我在Global.asax.cs

中尝试了以下内容
 routes.MapRoute(
    "5Star", // Route name
    "5Star/{action}/{id}", // URL with parameters
    new { controller = "FiveStar", action = "Index", id = UrlParameter.Optional }
 );

但它不起作用。帮助任何赞赏

0 个答案:

没有答案