文章列表中只显示前三行
在网上查了好多资料,可是还是没找到可以方法,有的是JAVA,看不懂,很长的代码,我要实现在首页的文章列表中只显示前三行,直接截取字符串吗?还是像网上说的通过判断 </br>,提供一下方法被,先谢了
问题解决,使用方法:
public string show(object context)
{
string temp;
string ct = context.ToString();
if (ct.Length > 20)
{
temp = ct.Substring(0, 20) + "....";
return temp;
}
else
{
temp = ct;
return temp;
}
}
在前台绑定时调用这个方法就可以了