我在ASP.NET MVC 5中有一個路由問題。我創建兩個區域「公共」和「管理」,我在URL localhost/Example中設置Public/NewsController/Index默認站點。 WebUI中,但現在我不能使用localhost/Example.WebUI /聯繫...... 我與T4MVC代碼: AdminAreaRegistration.cs public class Ad
我是MVC和編輯現有應用程序的新手。目前我看到RouteConfig.cs如下: public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
我已經遵循了此鏈接上的所有步驟,包括web.config更改和添加所需的程序集。 ASP.Net and Webforms in Harmony 我已經將MVC3安裝到webforms項目中,並實現了一個控制器並在Global.asax的Application_Start方法中註冊了它的路由。 routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
我正在實現一些東西,我希望在更傳統的MVC實現旁邊放置web api。 的結構是這樣的: + Controllers
+ Web
- Product.cs
+ Api
- Product.cs
在我的代碼,我想路由通過/api進來的Api命名空間的所有請求,以及其他一切的Web命名空間,像: // Want to indicate that these