解决方法
你不能使用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’.