window.opener=null;
window.close();
但是這個在IE7卻無效了,要改成用以下的方式
window.open('','_self','');
window.close();
所以在ASP.NET中,既可以這樣做:
ASP.NET VB
Page.ClientScript.RegisterStartupScript(Me.GetType, "Test Close Window", "<script>window.open('','_self','');window.close();</script>")
ASP.NET C#
ScriptManager.RegisterStartupScript(this, this.GetType(), "ALERT", "alert('Test Close Window');window.open('','_self','');window.close();", true);
參考網頁http://www.dotblogs.com.tw/topcat/archive/2008/03/31/2365.aspx
沒有留言:
張貼留言