如何在关闭弹出窗口时重新加载父页面

本文关键字:新加载 加载 窗口 | 更新日期: 2023-09-27 18:30:51

我在母版页上有一个链接按钮"条款和条件"。当使用单击它时,使用此代码显示一个弹出窗口

Dim myScript As String
            myScript = "<script>window.open('Terms.aspx?',null,'height=750, width=1024,status= no,resizable= no, scrollbars=yes,toolbar=no,location=no,menubar=no'); </script>"
            ScriptManager.RegisterStartupScript(Me, Me.[GetType](), "pop", myScript, False)

我在弹出窗口页面上有一个接受按钮,我正在关闭此弹出窗口

ClientScript.RegisterStartupScript(GetType(Page), "closePage", "window.close();", True)

问题是我想在关闭此弹出窗口后刷新父窗口。我怎样才能做到这一点?这不起作用 关闭弹出窗口后刷新父窗口

更新

<div style="padding:5px 0;">
      <asp:Button ID="btnAccept" runat="server" Text="Accept"  OnClientClick="Refresh()" style="HEIGHT: 19px;background: #C0003B;color: white; " /> &nbsp;<asp:Button ID="btnReject" runat="server" Text="Reject" OnClientClick="Refresh()" style="HEIGHT: 19px;background: #C0003B;color: white;"/>
</div>

   function Refresh() {
       return confirm('Are you sure?');
       window.onunload = refreshParent;
       function refreshParent() {
           window.opener.location.reload();
       } 
   }

如何在关闭弹出窗口时重新加载父页面

您可以使用"window.opener"访问父窗口,因此,在子窗口中编写类似以下内容的内容:

onunload="window.opener.location.reload();"

或使用此

<script>
    window.onunload = refreshParent;
    function refreshParent() {
    var retVal = confirm("Are you sure ?");
           if( retVal == true ){
            window.opener.location.reload();
          else
            return false;
    }
</script>