Link Button not working with IE 10

前端 未结 3 1939
渐次进展
渐次进展 2020-12-18 04:00

I have an problem related to Link Button Click event in asp.net on Internet Explorer 10.Link Button click event is not firing. It shows the javascript error

         


        
相关标签:
3条回答
  • 2020-12-18 04:11

    Problem occurred cause of: There is a bug in the browser definition files that shipped with .NET 2.0 and .NET 4, namely that they contain definitions for a certain range of browser versions. But the versions for some browsers (like IE 10) aren't within those ranges any more. Therefore, ASP.NET sees them as unknown browsers and defaults to a down-level definition, which has certain inconveniences, like that it does not support features like JavaScript.

    I also had same problem,I followed this article, and I'm sorted. Go through below link, It would help for sure.

    Fix

    0 讨论(0)
  • 2020-12-18 04:30

    meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9"

    meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"

    meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"

    0 讨论(0)
  • 2020-12-18 04:35

    Use compatibility meta tags for ie10 which makes your application to run in ie9

    i.e.use meta tags for backward compatibility

    0 讨论(0)
提交回复
热议问题