如何从 MVC 控制器内部路由到外部 URL?
我什至不好意思问这个问题,但不确定这样做的语法或方法。
我有一个控制器方法,我想路由到 MVC 应用程序外部的 URL。原因是因为我正在使用来自另一个 Webforms 应用程序的身份验证,并且希望在路由到另一个应用程序之前清除所有会话变量。
基本上,如何从控制器操作路由到 www.microsoft.com?
I'm embarrassed to even ask this question, but not sure of the syntax or way to do this.
I have a controller method where I would like to route to a URL outside of the MVC application. The reason for this is because I am using authentication from another webforms app and would like to clear out any session variables before routing to the other app.
So basically, how can you route to www.microsoft.com from a controller action?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
Controller.Redirect
。请注意,这在技术上不是“路由”,而是“重定向”,但应该适合您。Use
Controller.Redirect
. Note that this is not technically "routing", it's "redirecting", but should work just fine for you.