我正在使用带有c#的asp.net。 我正在显示数据库表中的一些数据。该表的列包含该特定记录的描述。我想首先显示最小描述,并且还想添加某种更多选项(例如,“阅读更多...”或“...”)。
我该怎么做这个工作?
帮助shell非常感谢。 。
答案 0 :(得分:1)
您可以使用此代码:
public static string ShortDescription(string Description)
{
string result = Description;
if (result.Length > 50)
{
result = result.Substring(0, 50);
result += "....";
}
return result;
}
并使用上述方法:
<p>
<%# ShortDescription(Eval("Description").ToString())%>
<a href='ShowDescription.aspx?Id=<%# Eval("Id") %>'>Read more. . . </a>
</p>
答案 1 :(得分:1)
你可以使用jquery插件 - 这对我来说非常好 - http://dotdotdot.frebsite.nl/
答案 2 :(得分:0)
对于纯客户端JavaScript解决方案,您可以在不可见的范围内隐藏部分描述:
This is the beginning
<span style="cursor:pointer" onclick="this.nextSibling.style.display = this.nextSibling.style.display == 'none'? '': 'none'">...more...</span>
<span style="display:none">of a very very very very very very very very very very very very very long description</span>
请注意,使用此解决方案的长描述将显示在与原始短文本相同的单元格中。