MVC 中的@Html.Raw 的用法

时间:2024-04-18 14:07:01

@Html.Raw

定义:在有些情况下,需要显式地渲染一些不应该采用HTML编码的值,这时可以采用Html.Raw方法来保证该值不被编码;简单来说:就是使用了Html.Raw后,字符串会以一个html方式呈现,而不使用该方法字符串会以原始字符串的形式出现。

eg:

@{
string message = "<strong><font color='red'>This is bold!</font></strong>";
}
<p><span>@Html.Raw(message)</span></p> @*生成红色加粗字体This is bold!*@
<p><span>@message</span></p>    @*展示message这个字符串的所有内容*@

效果如下(注意上下顺序与view中的代码是绝对对应的):

This is bold!

<strong><font color='red'>This is bold!</font></strong>

参考:https://blog.****.net/u010178308/article/details/80201510