iFrame 中的 Response.Redirect(),重定向父窗口
我知道这是不可能的,但是想要从 iFrame 执行 Response.Redirect 来重定向父页面的最佳替代方案是什么?
I know this isn't possible, but what is the best alternative for wanting to do Response.Redirect
from an iFrame, to redirect the parent page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 ASP.NET 无法执行此操作。服务器端的 ASP.NET 可以重定向传入请求,并且无法了解父框架。
但是,如果您想在某些服务器端条件下重定向父框架,您可以从服务器调用 JavaScript,如下所示:
当然,您可以在客户端使用简单的 JavaScript window.parent.location = 'http://yoursite.com'。
You can not do this using ASP.NET. ASP.NET on server side can redirect incoming request and can't know about a parent frame.
But if you want to redirect parent frame on some server side condition you can call JavaScript from server like this:
And of course you can use simple JavaScript window.parent.location = 'http://yoursite.com' on client side.
我刚刚使用以下代码成功了。它甚至绕过了 X-Frame-Options SAMEORIGIN 并允许在 iframe 中从一个域重定向到另一个域:
使用 字符串插值(自 C# 6 起):
I just used the following code with success. It even bypassed the
X-Frame-Options SAMEORIGIN
and allows redirection from one domain to another one in an iframe:With string interpolation (since C# 6):