重定向到另一个页面时出现问题

发布于 2024-10-20 18:13:50 字数 204 浏览 3 评论 0原文

我在尝试重定向另一个页面时收到“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

画中仙 2024-10-27 18:13:50

ResolveURL() Response.Redirect() 使用,不能很好地与 UrlEncode 配合使用,请尝试以下操作:

string targetURL = "~/AnotherForm.aspx?Xresult=" +  HttpUtility.UrlEncode(res);

另请检查此相关的 SO 答案:使用 ~ 路径的 Response.Redirect

ResolveURL() which is used by Response.Redirect(), doesn't work nicely with UrlEncode, try this:

string targetURL = "~/AnotherForm.aspx?Xresult=" +  HttpUtility.UrlEncode(res);

Also check this related SO answer: Response.Redirect using ~ Path

旧话新听 2024-10-27 18:13:50

您错误调用了 HttpUtility.UrlEncode

您应该只对参数值进行编码
通过对整个 URL 进行编码,您会转义 / 字符,从而弄乱您的 URL。

You're miscalling HttpUtility.UrlEncode.

You should only Encode the parameter value.
By Encodeing the entire URL, you are escaping the / characters, messing up your URL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文