IFrame 内的 Response.REdirect
我遇到过从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
target="_top"
添加到 html如果您有多个 iframe 页面,您可能需要创建一个通用页面,我们将其称为
FrameRedirector.aspx
。将此代码放入正文中:然后,将 Response.Redirect 代码替换为
You can add a
target="_top"
to the html<form>
element, or redirect using javascriptwindow.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:Then, replace the
Response.Redirect
code with