html - Is there an IIS setting to hint the browser to go into compatibility mode? -


i can modify document mode ie renders page in, passing in x-ua-compatible in response header. can achieve modifying setting in iis. enter image description here

similarly there way modify browser mode compatibility view modifying setting in iis?

shown below see in f12 tool in ie.

f12 screenshot

to configure iis 7 on windows server 2008-based computer include custom http response header:

  1. click start, click administrative tools, , click internet information services (iis) manager.
  2. in connections pane, expand node server, , expand .
  3. click web site want add custom http response header.
  4. in web site pane, double-click in section.
  5. under actions, click add.
  6. in name box, type x-ua-compatible.
  7. in value box, type ie=emulateie9.
  8. click ok.

hope helps!


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -