私が使用している親ページで:
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」を開きたいです。