元标记描述中的特殊HTML字符

时间:2017-12-06 13:42:09

标签: html asp.net-mvc meta-tags

我的metatag description包含带有重音符号或特殊字符的文字。 我正在Controller MVC中创建它,然后通过view发送到viewbag

顺便说一下,我的文字html(当我使用浏览器的查看HTML源代码时)会得到不同的代码。
例如:
orign text :Produtor's event em 10 Kirkpatrick St,atéN...
html text :Produtor's event em 10 Kirkpatrick St,at&#233 ...

我需要关心这件事吗?或者我需要更正新代码?我怎么能?

1 个答案:

答案 0 :(得分:0)

解决方案更容易。

使用@Html.Raw

<meta name="description" content="@Html.Raw(ViewBag.description)" />