mvc扩展的HTML方法

namespace System.Web.Mvc.Html
{
    public static class helperext
    {
        public static HtmlString mylabel(this HtmlHelper helper, string text)
        {
            string str = string.Format("<span color='red'>{0}</span>", text);
            return MvcHtmlString.Create(str);
        }
    }
}

  主页记得命名空间 改成系统的命名空间  返回类型改成htmlstring或者mvchtmlstring

原文地址:https://www.cnblogs.com/lierjie/p/3791490.html