前端cshtml里面需要decode时使用
@Html.Raw(HttpUtility.HtmlDecode(Model.Contents))
对应的action里需要encode的地方使用
HttpUtility.HtmlEncode(collection["newsContentData"]);
前端cshtml里面需要decode时使用
@Html.Raw(HttpUtility.HtmlDecode(Model.Contents))
对应的action里需要encode的地方使用
HttpUtility.HtmlEncode(collection["newsContentData"]);