我在此有一部在我数据库中取得一定记录并显示其内容的法典,并有一个链接(“Read More”),使观众能够查阅该记录的详细网页。
<% Dim id As Integer = _news.Rows(count).Item("IDnews")%>
<%=_news.Rows(count).Item("newsTitle")%>
<img src= <%= Url.Content("~/NewsPictures/" + _news.Rows(count).Item("newsThumbnail")) %> alt="" />
<%Dim content As String = _news.Rows(count).Item("newsContent")%>
<%If content.Length > 50 Then%>
<%content = content.Substring(0, 150) & "..."%>
<%End If%>
<%=content%>
<%=Html.ActionLink("Read More", "NewsPublic", "Administration", New With {id}, DBNull.Value)%>
它展示了如下一些情况:
我们向你保证,联合国...... 阅读
我希望,最后一段话在删除之前完成,或者在删除之前可能要展示3句。 以上样本中的最后一个词应为大学。