سؤال

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