ASP.NET MVC 2 将所有操作从一个控制器重定向到另一个控制器
我有两个具有相同操作和私有方法的控制器。第二个是从第一个复制的。 我修改了第二个控制器,以实现更好的性能,现在我想将所有操作从第一个控制器路由到第二个控制器。
我怎样才能从 Global.asax 或其他方式做到这一点,让我保留旧代码以进行快速切换?
谢谢!
I have two controllers with the same actions and private methods. The second one is copied from the first.
I modified the second one, to perform better and now I want to route all the actions from the first controller to the second one.
How can I do this from Global.asax or some other way in a way that could let me keep the old code for fast switching?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以设置如下路线:
您也可以在代码中重命名控制器。
You could set up a route like:
You could also just rename your controllers in the code.