暂时禁用 Asp .NET MVC 2 中的控制器
Asp .NET MVC 2 中有没有办法暂时禁用 ASP .NET Mvc 2 中的控制器?是否有一些属性或网络配置元素可以帮助我解决这个问题?
由于我无法控制的原因,我无法注释掉不需要的控制器。
Is there a way in Asp .NET MVC 2 to temporarily disable a controller in ASP .NET Mvc 2? Is there some attribute or web config element that can help me with this?
For reasons that are out of my controll I just cannot comment unwanted controller out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想您可以通过路线过滤它并将其定向到“抱歉”页面。
这可能对你有帮助。
http ://odetocode.com/blogs/scott/archive/2009/10/13/asp-net-mvc2-preview-2-areas-and-routes.aspx
I guess you could filter it through a route and direct it to a "Sorry" page.
This might help you.
http://odetocode.com/blogs/scott/archive/2009/10/13/asp-net-mvc2-preview-2-areas-and-routes.aspx
是的,有。最简单的一种是在控制器上使用 自定义 ActionFilter 来执行一些自定义操作动作而不是控制器动作
Yes there is. Simplest one is to use Custom ActionFilter on your controller that would do some custom action instead of controller actions