HtmlHelper只显示几个字符

时间:2014-03-14 19:49:18

标签: asp.net-mvc nhibernate html-helper spark-view-engine

是否可以使用HtmlHelper仅显示文本的几个字符?我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

这样的东西?

public static MvcHtmlString SubString(this HtmlHelper helper, string theString, int length)
{
  return MvcHtmlString.Create(theString.Substring(0,length));
}