ASP.NET MVC -- Route Basic

When the application first starts up (i.e., when Application_Start() runs), this code
populates a global static RouteCollection object called RouteTable.Routes. That’s where the
application’s routing configuration lives.

MapRoute() adds an entry to the routing configuration.

正常写法:

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

等价于:

Route myRoute =  new Route( " {controller}/{action}/{id} "new MvcRouteHandler())
{
Defaults =  new RouteValueDictionary(  new {
controller =  " Home ", action =  " Index ", id =  ""
})
};
routes.Add( " Default ", myRoute);

转载于:https://www.cnblogs.com/davidgu/archive/2012/03/15/2398366.html

猜你喜欢

转载自blog.csdn.net/weixin_34162228/article/details/93802649