I have a problem with the modalpopups in IE11. Currently we are still using IE9 because of this issue. The problem is that the modalpopup windows don't close in IE11. We are using version 3.5.7.0725 of the ajaxcontroltoolkit.dll
Anybody a solution for this problem?
Thanks.
Comments: I've figured it out: I had to places the <meta http-equiv="X-UA-Compatible" content="IE=9"/> into my aspx. page to force the compatibilty of IE9 under IE11. You could also add the follow to the web.config under the WebServer section. this only works on IIS7 <httpProtocol> <customHeaders> <clear/> <add name="X-UA-Compatible" value="IE=9"/> </customHeaders> </httpProtocol> Only question I have, is why do i have to force version 9 of IE?? All other browsers don't have problems with the modalpopupextender only IE > 9?
Anybody a solution for this problem?
Thanks.
Comments: I've figured it out: I had to places the <meta http-equiv="X-UA-Compatible" content="IE=9"/> into my aspx. page to force the compatibilty of IE9 under IE11. You could also add the follow to the web.config under the WebServer section. this only works on IIS7 <httpProtocol> <customHeaders> <clear/> <add name="X-UA-Compatible" value="IE=9"/> </customHeaders> </httpProtocol> Only question I have, is why do i have to force version 9 of IE?? All other browsers don't have problems with the modalpopupextender only IE > 9?