Exclude site from Compability View policy

16,899

Solution 1

In Group Policy, you can use the Site to Zone assignment list to place the site in question into the trusted sites zone instead. Compatibility view is disabled by default in that zone.

Solution 2

To tell Internet Explorer not to use Compatibility Mode on your site, use the following meta tag (or a variation thereof) in the head section of your site:

<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=EDGE" />

Note that this tag must be the first tag inside the head tag. For more information, visit: Specifying legacy document modes

Share:
16,899

Related videos on Youtube

Jdeboer
Author by

Jdeboer

Updated on September 18, 2022

Comments

  • Jdeboer
    Jdeboer over 1 year

    I have a client who enforces the policy in IE that all local intranet sites be loaded in the Compatibility View.

    Unfortunately our webapp doesn't support this and gives alot of issues in the comp. view. Is there a way to specifically exclude a site from this policy without having to include it in our code ?

    • VBwhatnow
      VBwhatnow almost 10 years
      It makes more sense to update your code once rather than tell every client that uses your web app to change their policy settings.