asp.net – iFrame中的Response.Redirect(),重定向父窗口

前端之家收集整理的这篇文章主要介绍了asp.net – iFrame中的Response.Redirect(),重定向父窗口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道这是不可能的,但是想要从iFrame执行Response.Redirect以重定向页面的最佳选择是什么?

解决方法

你不能使用ASP.NET来做到这一点.服务器端的ASP.NET可以重定向传入的请求,但无法知道父帧.

但是如果你想在某些服务器端条件下重定向父框架,你可以从服务器调用JavaScript,如下所示:

protected void Page_Load(object sender,EventArgs e) {
   ClientScriptManager.RegisterClientScriptBlock(this.GetType(),"RedirectScript","window.parent.location = 'http://yoursite.com'",true);
}

当然,您可以在客户端使用简单的JavaScript window.parent.location =’http://yoursite.com’.

原文链接:https://www.f2er.com/aspnet/246873.html

猜你在找的asp.Net相关文章