首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET Framework >

ASP.NET MVC 控制器名称可以改吗?解决办法

2012-06-05 
ASP.NET MVC 控制器名称可以改吗?如,有一个控制器名称为FixMoney。但不想给用户知道名称为FixMoney,我记得

ASP.NET MVC 控制器名称可以改吗?
如,有一个控制器名称为FixMoney。但不想给用户知道名称为FixMoney,我记得有看视频的时候可以改的,现在找不着了……

[解决办法]
路径重写?
[解决办法]
protected void Application_Start(object sender, EventArgs e)
 2 {
 3 // Note: Change Url= to Url="[controller].mvc/[action]/[id]" to enable 
 4 // automatic support on IIS6 
 5 
 6 RouteTable.Routes.Add(new Route
 7 {
 8 Url = "[controller]/[action]/[id]",
 9 Defaults = new { action = "Index", id = (string)null } ,
10 RouteHandler = typeof(MvcRouteHandler)
11 });
12 
13 
14 RouteTable.Routes.Add(new Route
15 {
16 Url = "Default.aspx",
17 Defaults = new { controller = "Home", action = "Index", id = (string)null },
18 RouteHandler = typeof(MvcRouteHandler)
19 });
20 
21 
22 }

是这个东西?

热点排行