在父页面中我正在使用:
function popitup(url) {
newwindow = window.open("child.aspx", 'name',
'height=700,width=800,scrollbars=yes,
resizable=no ');
if (window.focus) { newwindow.focus() }
return false;
}
子窗口有一个链接:
protected void GridView_SelectedIndexChanged(object sender, EventArgs e)
{
Response.Redirect("Link1.aspx");
}
我正在子窗口中重定向。但我想在父窗口中打开“Link1.aspx”。
答案 0 :(得分:1)
您可以使用一些JavaScript在子窗口中完成此操作。查找window.opener
属性。您可以使用以下方式重定向父级:window.opener.location.href
答案 1 :(得分:1)
您可以使用此javascript执行
window.parent.location = 'Link1.aspx'