how to forcefully change the browser mode in IE9 to IE9 compatibility mode for a particular page in a .net application ?
Asked
Active
Viewed 131 times
1 Answers
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
-
ive tried the meta tag solution but it doesnt seem to work. – user3643337 May 17 '14 at 10:28