ASP.NET MVC 路由
routes.MapRoute( “Default”, // Route name “{controller}/{action}/{id}”, // URL with parameters new { controller = “Home”, action = “Index”, id = UrlParameter.Optional }, // Parameter defaults new[] { “PaymentCenter.Controllers” } ); =========== AreaRegistration.RegisterAllAreas( »