I am having an issue with IE 9 setting itself into "Quirks mode" automatically. To combat this I came across another SO question where an answer suggested that the following header be added (via web.config) to force IE 9 into "Standards mode".
<add name="X-UA-Compatible" value="IE=Edge,chrome=1" />
This indeed worked in that IE 9 rendered the page in "Standards mode". What I am wondering is, by adding this header will other browsers be affected?