[Tips]: ASP.NET MVC得到controller的名字
2009-07-08 14:01 敏捷的水 阅读(558) 评论(1) 编辑 收藏 举报If you have the ControllerContext class instance available then you can use this code:
string controllerName= controllerContext.RouteData.GetRequiredString("controller");
the HTML helper provides access to the ControllerContext, you can use it in view page:
Html.ViewContext.Controller.ControllerContext.RouteData.GetRequiredString("controller")
扫码关注公众号,了解更多管理,见识,育儿等内容
作者: 王德水
出处:http://www.cnblogs.com/cnblogsfans
版权:本文版权归作者所有,转载需经作者同意。
出处:http://www.cnblogs.com/cnblogsfans
版权:本文版权归作者所有,转载需经作者同意。