您的位置:首页 > Web前端 > HTML

MVC————扩展方法MvcHtmlString

2016-02-23 07:12 483 查看
使用前:

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);

}
}


效果:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: