I am working on a ASP.NET web application. Recently we have upgraded the Framework from 2.0 to 4.5. This upgrading has forced us to use IE11. In order to make our application IE11 compatible we have added
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7;IE=EmulateIE8; IE=EmulateIE9; IE=EDGE" />
in the master page and also included the below tag in config file as well.
<add name="X-UA-Compatible" value="IE=Edge" />
In spite of adding the above line of code the application still fails to load properly in IE11. The first page, that is, the SignIn page fails to load completely and displays a blank page. It works fine only on adding the URL of the site using Compatibility View. It is required to make this compatible to IE11 as it is not expected of the clients to set the Compatibility View every time someone plans on using the site. Please help.