Overcome/ignore compatibility view IE11 for particular page/site

161 views Asked by At

I have a sharepoint site and loading an external website in a content page. I have enabled compatibility mode for my sharepoint site, and the external site will not work in IE lower versions. Since i have enabled compatibility view for the site, the external site not loading in iFrame of my content page.

Is it atleast possible to turn off or bypass the compatibility view setting for the particular page? Since i have enabled the compatibility view for the domain, the meta tags are ignored.

I tried to modify the user agent string in URL rewrite also.

Any advise?

1

There are 1 answers

0
Mahmoud Kubrosli On

I've never tested this with an iframe that has an external reference, but if you are talking about one of your site pages, Try to add the follwoing to your config file

<location path="Your_Page_Path">
    <system.webServer>
        <httpProtocol>
            <customHeaders>
                <add name="X-UA-Compatible" value="IE=Edge" />
            </customHeaders>
        </httpProtocol>
    </system.webServer>
</location>