我在我的应用程序中有2个视图
1:视图 - >来临吧> ViewSeason
alt text http://img102.imageshack.us/img102/9207/viewsseasonsx4.jpg
2:视图 - >管理 - >来临吧> ViewSeason
alt text http://img242.imageshack.us/img242/1911/viewsadminsr4.jpg
我怎么写Controller呢?请帮助我.....
最简单的方法是将Admin/Season折叠为AdminSeason并拥有AdminSeasonController.cs.
然后更新您的路由表,以便/ Admin/Season路由到AdminSeasonController.
这是未经测试的,但它可能在您的Global.ascx中看起来像这样(在开箱即用的MVC路线之上):
routes.MapRoute( "AdminSeason", "Admin/Season", new { controller = "AdminSeason", action = "Index" } );
以下是其他一些问题:MVC路由:
ASP.Net MVC路由映射
ASP.NET MVC路由
ASP.NET MVC路由问题
ASP.NET MVC路由问题