1:在Asp.net中使用
@Html.Raw(HttpUtility.HtmlDecode(school.Content))
2:在Asp.NetCore中使用
@Html.Raw(System.Net.WebUtility.UrlDecode(@Model.Content))
本文共 191 字,大约阅读时间需要 1 分钟。
1:在Asp.net中使用
@Html.Raw(HttpUtility.HtmlDecode(school.Content))
2:在Asp.NetCore中使用
@Html.Raw(System.Net.WebUtility.UrlDecode(@Model.Content))
转载于:https://www.cnblogs.com/xinbaba/p/9447101.html