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

mvc扩展的HTML方法

时间:2014-06-18 14:40:25      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:class   blog   ext   color   string   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

mvc扩展的HTML方法,布布扣,bubuko.com

mvc扩展的HTML方法

标签:class   blog   ext   color   string   html   

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

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