我试图使用此代码从代码隐藏中关闭一个aspx模式 -
ScriptManager.RegisterStartupScript(this, this.GetType(), "Close_Window", "self.close();", true);
使用谷歌浏览器时效果非常好,但Internet Explorer失败了。有什么想法吗?
Thanx提前获得帮助
答案 0 :(得分:0)
尝试使用IE
ClientScript.RegisterClientScriptBlock(GetType(), "Javascript", "<script>self.close();</script>");