MVC3 控制器操作重定向到 URL
我有这个字符串“/TrackMyJob/JobTasksInvolvedPartiesDetail?jobtaskobjid=638e17c9-8d0a-4da4-866f-098c619bab63”。 我从 HttpContext.Current.Request.Url.PathAndQuery 得到上述内容,我的控制器是否可以重定向到那里?如果是的话怎么办?
先感谢您。
I have this string "/TrackMyJob/JobTasksInvolvedPartiesDetail?jobtaskobjid=638e17c9-8d0a-4da4-866f-098c619bab63".
I got the above from HttpContext.Current.Request.Url.PathAndQuery
, is it possible my controller to redirect there ? if yes how ?
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 控制器的
Redirect
docs 方法。但你为什么要这么做呢?您的路线不支持该网址吗?
You can use the
Redirect
docs method of the controller.But why would you want to do that ? Isn't that url supported by your routes ?