.NET⼀C#中,使用如下方式打开一个新窗口,点击新窗口中的确认或者取消按钮时,如何刷新本页面。急~~~~~

2024-11-24 08:05:57
推荐回答(5个)
回答1:

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);

这样就是对父窗口的刷新了

回答2:

onclick="history.back(1);location.reload();" &window.opener.reload();

回答3:

提交成功时,重新跳转(重新加载)

回答4:

response(this,“parent.location.reload();parent.popWindowHide();”)
可以先刷新页面再关闭当前页。

回答5:

不用刷新,重定向到哪个页面一样的