문제

Is it possible use a HtmlHelper to display only a few characters of the text? how can I do this?

도움이 되었습니까?

해결책

Something like this?

public static MvcHtmlString SubString(this HtmlHelper helper, string theString, int length)
{
  return MvcHtmlString.Create(theString.Substring(0,length));
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top