废话少说,直接上代码和图:
使用前:
public static class MyHtmlHelper
{
public static string GroupPage(this HtmlHelper helper)
{
string html1 = "<span style=‘color:red;‘>hello</span>";
return html1;
}
}
使用后:
public static class MyHtmlHelper
{
public static MvcHtmlString GroupPage(this HtmlHelper helper)
{
string html1 = "<span style=‘color:red;‘>hello</span>";
return new MvcHtmlString(html1);
}
}
原文:http://www.cnblogs.com/shuai7boy/p/5208680.html