【ASP.NET】打开关闭新窗体

'当前窗体打开新页面
Response.Redirect(aURL)
'弹出新窗体打开新页面
Response.Write("<script>window.open('" & aURL & "')</script>"
'关闭当前窗体
Response.Write("<script>window.opener=null;window.close();</script>")


原文地址:https://www.cnblogs.com/sekihin/p/763852.html
Creative Commons License 本作品采用 知识共享署名-非商业性使用 2.5 中国大陆许可协议进行许可。