X-UA-Compatible in DotNetNuke

1.6k Views Asked by At

Is there a way to implement a X-UA-Compatible: IE=edge,chrome=1 line of code in the .ascx of a DotNetNuke site? Or is there another place to implement it?

Presently, I've got:

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

under the DNN declarations/server calls. Is this right?

Thanks!

EDIT:

Turns out, adding

<![CDATA[<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" >]]>

to the doctype.xml file will work.

1

There are 1 best solutions below

2
On

You can use the 40Fingers Skin Helper to add that <meta> tag to the head of the page. After installing, you'd register it on the page like so:

<%@ Register TagPrefix="fortyfingers" TagName="STYLEHELPER" Src="~/DesktopModules/40Fingers/SkinObjects/StyleHelper/StyleHelper.ascx" %>

Then you can add it to your skin, like this:

<fortyfingers:STYLEHELPER AddToHead='<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">' runat="server" />

DNN also has its own Meta skin object, but currently it only exposes name and content, not http-equiv (similarly, if you need to add a name/content meta tag, the Skin Helper provides an AddMetaTags property, too).