如何将页面重定向到父框架?

时间:2013-12-20 10:15:38

标签: c# javascript internet-explorer google-chrome

我正在尝试将页面重定向到父框架。使用以下代码。

   ScriptManager.RegisterStartupScript(Page, Page.GetType(), "popup", "window.open('myPage.aspx','_Parent')", true);

但是此代码在Google Chrome和IE中无法使用。但它在Mozila中运作正常。 任何人都可以告诉我如何使这些代码与浏览器无关?

2 个答案:

答案 0 :(得分:0)

使用以下内容代替window.open:

window.location =“[url]”;

如果您希望父窗口显示指定的URL,请使用:

window.parent.location =“[url”];

答案 1 :(得分:0)

ScriptManager.RegisterStartupScript(this.Page,this.GetType(),“a”,“parent.window.location.assign('Test.aspx')”,true);