我对 asp.net mvc 路由有疑问。如何将同一文件夹中的两个视图映射到不同的两个控制器?
控制器 => TestFolder => Test1Controller Test2Controller
视图 => TestFolder =>Test1.cshtml Test2.cshtml
这是我现在拥有的 MapRoute:
routes.MapRoute(
"Test1",
"Test1/{action}/{id}",
new { controller = "Test1", action = "Test1", id = UrlParameter.Optional }
);
routes.MapRoute(
"Test2",
"Test2/{action}/{id}",
new { controller = "Test2", action = "Test2", id = UrlParameter.Optional }
);
提前致谢