有两个窗口:WebForm1和WebForm2,WebForm1中有按钮Button1,点击后弹出窗口WebForm2。在WebForm2中有按钮Button2(功能为向数据库中写入数据)和Button3(功能:关闭页面)。点击Button3后,WebForm2关闭,同时返回WebForm1页面并且自动刷新,显示修改后的数据。
第一种方法:
window.open打开新窗口,在关闭新窗口时:window.opener.location.reload();self.close();
第二种方法:
Response.Write("<script>window.opener.location.replace('MAD.aspx');self.close();</script>")