现在的位置: 首页 > 综合 > 正文

刷新父页面

2018年04月10日 ⁄ 综合 ⁄ 共 336字 ⁄ 字号 评论关闭

protected void Page_Load(object sender, EventArgs e)
    {
        // 刷新指定的父页面
        //this.Response.Write("<script>window.opener.opener=null;window.opener.navigate('index.aspx');</script>");

        // 刷新父页面
        //this.Response.Write("<script>window.opener.opener=null;window.opener.location.replace(window.opener.location.href);</script>");
    } 

抱歉!评论已关闭.