2012-09-12 201 views
0

在父頁面我使用:重定向到鏈接的父窗口

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」。

回答

1

你可以用一些javascript在子窗口中完成這項工作。查找window.opener屬性。您可以使用重定向父這樣:window.opener.location.href

1

你可以用這個JavaScript

window.parent.location = 'Link1.aspx' 
執行