标签:style color os ar div sp c html new
创建一个静态class和静态方法
 public static class Class1
    {
        public static MvcHtmlString allenTry(this HtmlHelper helper, string id)
        {
            var html = "<div>ddd</div>";
            return new MvcHtmlString(html.ToString());
        }
    }
然后在前台View
@Html.allenTry("a")
就可以了
标签:style color os ar div sp c html new
原文地址:http://blog.csdn.net/lglgsy456/article/details/39290479