ASP.NET-MVC名稱規則

ASP.NET-MVC命名規則

1.控制器名稱一定要controller結尾,否則無法執行

ex:ProductController、LoginController等

2.View與Controller裡的Action對應名稱必須相同

ex:有個負責顯示HomeController裡的Index Action的View,名稱即為Index.cshtml

3.Model檔案可隨意命名,與Controller、View沒有名稱上的連動關係