Posted on: 7/9/2015 7:22:31 PM | Views : 773

Hi,
We are migrating to IE11 but our application was developed in IE9. The following setting is placed in the web.config to render the application in IE9 mode in IE11 browser now.
<system.webServer> <httpProtocol> <customHeaders> <clear /> <add name="X-UA-Compatible" value="IE=9" /> </customHeaders> </httpProtocol> </system.webServer>
The above setting works fine when the application is accessed using the below direct server URL. http://servername:1081/T22/Homepage.aspx
Every user will have a link to the application on his (portal) home page. If the application is accessed from User's homepage then the application is not rendered in IE9 mode even though the entry is placed in web.config.
http://userportal.com/something/T22/Homepage.aspx
On F12 in IE11, we noticed that when the direct server URL is br ...

Go to the complete details ...