Asp.net MVC 4新项目中创建area的后续操作
生活随笔
收集整理的這篇文章主要介紹了
Asp.net MVC 4新项目中创建area的后续操作
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Asp.net MVC 4新項目中創建area后,往往HomeController與area的HomeController路由發生混淆,需要手工設置一些地方避免mvc無法識別默認路由的狀況。
無廢話具體步驟:
1. 檢查早Global.asax和\App_Start\RouteConfig.cs中是否已經自動添加了AreaRegistration.RegisterAllAreas();如不存在,進入第2步,否則第3步
2. 在\App_Start\RouteConfig.cs中,添加AreaRegistration.RegisterAllAreas();
public static void RegisterRoutes(RouteCollection routes) {routes.IgnoreRoute("{resource}.axd/{*pathInfo}");AreaRegistration.RegisterAllAreas();routes.MapRoute(name: "Default",url: "{controller}/{action}/{id}",defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },namespaces: new[] { "TestMvcApplication.Controllers" }); }3.?在\App_Start\RouteConfig.cs中,檢查routes.MapRoute()中是否顯性指定了默認Controller的namespace。
namespaces: new[] { "TestMvcApplication.Controllers" }?
轉載于:https://www.cnblogs.com/heuyang/p/5024986.html
總結
以上是生活随笔為你收集整理的Asp.net MVC 4新项目中创建area的后续操作的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 陈卓璇浙江卫视2023#美好中国新歌会#
- 下一篇: KVC和KVO