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.
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:Then you can add it to your skin, like this:
DNN also has its own
Meta
skin object, but currently it only exposesname
andcontent
, nothttp-equiv
(similarly, if you need to add a name/content meta tag, the Skin Helper provides anAddMetaTags
property, too).