IFrame 内的 Response.REdirect

发布于 2024-10-18 00:50:09 字数 115 浏览 3 评论 0原文

我遇到过从 IFrame 中的按钮重定向我的 asp 页面的情况。

按钮单击事件中的 Response.Redirect 会重定向 IFrame,但不会重定向整个页面。

谢谢, 毗湿奴

I have this situation of redirecting my asp page from a button within an IFrame.

Response.Redirect in the button click event redirects the IFrame but not the entire page.

Thanks,
Vishnu

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

会发光的星星闪亮亮i 2024-10-25 00:50:09

您可以将 target="_top" 添加到 html

元素,或使用 javascript window.top.location = '/path'< 进行重定向/代码>。

如果您有多个 iframe 页面,您可能需要创建一个通用页面,我们将其称为 FrameRedirector.aspx。将此代码放入正文中:

<script type="text/javascript">
  window.top.location = '<%=Server.UrlDecode(Request.QueryString["url"])%>';
</script>

然后,将 Response.Redirect 代码替换为

string redirect = "/path/to/redirect.aspx?foo=bar";
Response.Redirect("~/FrameRedirector.aspx?url=" + Server.UrlEncode(redirect));

You can add a target="_top" to the html <form> element, or redirect using javascript window.top.location = '/path'.

If you have multiple iframe pages, you may want to create a generic page, let's call it FrameRedirector.aspx. Place this code in the body:

<script type="text/javascript">
  window.top.location = '<%=Server.UrlDecode(Request.QueryString["url"])%>';
</script>

Then, replace the Response.Redirect code with

string redirect = "/path/to/redirect.aspx?foo=bar";
Response.Redirect("~/FrameRedirector.aspx?url=" + Server.UrlEncode(redirect));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文