重定向到另一个页面时出现问题
我在尝试重定向另一个页面时收到“Internet Explorer 无法显示网页”错误。
string targetURL = "~/AnotherForm.aspx?Xresult=" + HttpUtility.UrlEncode(res);
Response.Redirect(targetURL);
谢谢 BB
I am getting "Internet Explorer cannot display the webpage" error while trying to redirect ot another page.
string targetURL = "~/AnotherForm.aspx?Xresult=" + HttpUtility.UrlEncode(res);
Response.Redirect(targetURL);
Thanks
BB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ResolveURL()
由Response.Redirect()
使用,不能很好地与 UrlEncode 配合使用,请尝试以下操作:另请检查此相关的 SO 答案:使用 ~ 路径的 Response.Redirect
ResolveURL()
which is used byResponse.Redirect()
, doesn't work nicely with UrlEncode, try this:Also check this related SO answer: Response.Redirect using ~ Path
您错误调用了
HttpUtility.UrlEncode
。您应该只对参数值进行
编码
。通过对整个 URL 进行
编码
,您会转义/
字符,从而弄乱您的 URL。You're miscalling
HttpUtility.UrlEncode
.You should only
Encode
the parameter value.By
Encode
ing the entire URL, you are escaping the/
characters, messing up your URL.