码迷,mamicode.com
首页 > Web开发 > 详细

.net Core 中将原MVC中的 MvcHtmlString转换

时间:2019-02-18 14:42:40      阅读:406      评论:0      收藏:0      [点我收藏+]

标签:innerhtml   code   elf   htm   write   c中   pen   dht   build   

public static IHtmlContent CustomLabelFor(this IHtmlHelper helper, Expression> expression, object htmlAttributes) { string result; TagBuilder div = new TagBuilder("div"); div.MergeAttribute("class", "form-group"); var label = helper.LabelFor(expression, new { @class = "control-label col-lg-1" }); div.InnerHtml.AppendHtml(label); using (var sw = new System.IO.StringWriter()) { div.WriteTo(sw, System.Text.Encodings.Web.HtmlEncoder.Default); result = sw.ToString(); } return new HtmlString(result); }

.net Core 中将原MVC中的 MvcHtmlString转换

标签:innerhtml   code   elf   htm   write   c中   pen   dht   build   

原文地址:https://www.cnblogs.com/yingger/p/10395279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!