IMG-LOGO

How to force your website to run IE9 compatibility mode?

andy - 03 Jul, 2013 3408 Views 0 Comment

You may wonder why some users use Windows 8 or Internet Explorer 10 when visiting your site they can see some of the website components are not displayed properly. Those are because in IE10, Microsoft has added some features that might not fully compatible yet with your site.

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

Alternatively, if you have a web config file or configuration file, You can specify the setting inside the httpProtocol section. If you are developing the website in Microsoft ASP.Net platform, you must be pretty familiar with this file. It is usually located in the root folder of your website.

<configuration>
  <system.webserver>
    <httpProtocol>
		<customHeaders>
			<add name="X-UA-Compatible" value="IE=EmulateIE9"/>
		</customHeaders>
	</httpProtocol>
  </system.webserver>
</configuration>

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles

How to style pagination links with CSS?

Do you need to create a beautiful, simple and elegant pagination links with css? Simply follow our easy and quick tutorial on how to create the pagination links easily with CSS.

Optimizing your site for printing

The easy way to optimize your site for printing is to create a separated external css targeting a media to print only When a printing action is being executed the browser will send over the information from your page to ...