MVC————扩展方法MvcHtmlString

 

使用前:

 

public static class MyHtmlHelper
2     {
3         public static string GroupPage(this HtmlHelper helper)
4         {
5             string html1 = "<span style='color:red;'>hello</span>";
6             return html1;
7 
8         }
9     }
View Code

使用后:

public static class MyHtmlHelper
    {
        public static MvcHtmlString GroupPage(this HtmlHelper helper)
        {
            string html1 = "<span style='color:red;'>hello</span>";
            return new MvcHtmlString(html1);

        }
    }

效果:

posted @ 2016-02-23 07:12  shuai7boy  阅读(2558)  评论(0编辑  收藏  举报