ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "click00008", "alert('你的请假单提交成功!');window.parent.opener=null;window.parent.close();", true);
改成
ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "click00008", "alert('你的请假单提交成功!');window.opener.parent.location.reload();window.parent.close();", true);
这样就是对父窗口的刷新了
onclick="history.back(1);location.reload();" &window.opener.reload();
提交成功时,重新跳转(重新加载)
response(this,“parent.location.reload();parent.popWindowHide();”)
可以先刷新页面再关闭当前页。
不用刷新,重定向到哪个页面一样的