从代码隐藏中关闭aspx模式

时间:2016-06-15 09:53:07

标签: c# asp.net

我试图使用此代码从代码隐藏中关闭一个aspx模式 -

ScriptManager.RegisterStartupScript(this, this.GetType(), "Close_Window", "self.close();", true);

使用谷歌浏览器时效果非常好,但Internet Explorer失败了。有什么想法吗?

Thanx提前获得帮助

1 个答案:

答案 0 :(得分:0)

尝试使用IE

ClientScript.RegisterClientScriptBlock(GetType(), "Javascript", "<script>self.close();</script>");