IE11 点击GridView Select无效,F12 发现 '__doPostBack is undefined' error

不知原因为何,微软自己的东西都不兼容;

在masterpage里添加如下代码可解决问题。

<script runat="server">

protected override void OnInit(EventArgs e)
{
Page.ClientTarget = "uplevel";
base.OnInit(e);

}
</script>

http://stackoverflow.com/questions/19915720/dopostback-is-undefined-in-ie11

posted @ 2016-06-28 14:48  Hailiah  阅读(256)  评论(0)    收藏  举报