0

how to forcefully change the browser mode in IE9 to IE9 compatibility mode for a particular page in a .net application ?

1 Answers1

0

Try this code :

  <httpProtocol>
    <customHeaders>
     <clear />
      <add name="X-UA-Compatible" value="IE=9" />
   </customHeaders>
 </httpProtocol>

or

 <meta http-equiv="X-UA-Compatible" content="IE=9">
Kumar Manish
  • 3,746
  • 3
  • 37
  • 42