user3668427
user3668427

Reputation: 19

Force the Web application to run in IE8 compatability mode

My Webapplication is VB.NET MVC.It is currently running fine in IE8.Now we are going to migrate to IE10.While viewing the Web application from IE10,lots of bugs were found.Our clients do not wants to view the site in compatability mode by selecting the option in IE 11.

Tools --->Campatability view settings

Can any one suggest any code by which we can force the application to run in IE8 comapatability mode.

Upvotes: 0

Views: 245

Answers (1)

Mr_Green
Mr_Green

Reputation: 41822

According to MSDN,

You can add

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />

In head tag of your html.

Further reading.

Upvotes: 1

Related Questions