在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
今天做的MVC程序里,有两个WebSite,有两个不同命名空间的HomeController,网站启动时,/Home/Index, 提示有两个HomeController. 系统不知道使用哪一个 register this route by calling an overload of the 'MapRoute' method that takes a 'namespaces' parameter. 解决办法: 1. 在路由注册时,加上各自的命名空间 routes.MapRoute("Default", "{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = UrlParameter.Optional },null, new string[]{"Video.CMS.Controller.*"} 2. 在Application_Start里 AreaRegistration.RegisterAllAreas(); RegisterRoutes(RouteTable.Routes); 之后加上: ControllerBuilder.Current.DefaultNamespaces.Add("Video.CMS.Controller.*"); |
请发表评论