I'm using the ASP.NET 4 MetaKeywords
and MetaDescription
on every page to set the appropriate meta tags. I also use the Anti XSS Library as the default encoder in the application.
The tags end up being rendered like:
<meta name="description" content="Test description" />
<meta name="keywords" content="my meta, tags, encoded, why" />
The AntiXssLibrary
is set to default in web.config
as below:
<httpRuntime encoderType="AntiXssEncoder, MyClassLib"/>
Is there an issue with them being encoded this way, and is there any way I can get rid of this encoding?