你是用open弹出的还是showModalDialog

解决方案 »

  1.   

    Response.Write("<script>window.opener.parent.leftframe.location.href='left.aspx?sr=1&status=0';</script>")
      

  2.   

    如果是showModalDialog,只需在var str=window.showModalDialog的下一行写parent.main.location.reload();就可以.
    如果是open就在子窗口关闭前调用
    window.opener.parent.main.location.reload();试试看
      

  3.   

    function test() {
    window.opener.location.reload();
    }在弹出窗口的关闭事件
      

  4.   

    response.write("<script>window.opener.parent.main.location.reload();</script>")
      

  5.   

    谢谢结贴
    代码略改一下
    Response.Write("<script>window.opener.parent.frames['contents'].location.href='left.aspx?sr=1&status=0';</script>");