不好意思:小弟就18分:真是太少了……
小弟初学,希望哥哥们,详细说明一下:
列宽度为352
<% ' //=left(rs("title"),31)%><% if Len(rs("title"))>30 then }}%>这里的数都设面100了也是不能显示我要的那样。
===========================
下边是完整代码段:
<td width="352" rowspan="2" align="center" valign="top" bgcolor="#ffffff"><ul class="zhiding">
<%
t=0
set rs=server.createobject("adodb.recordset")
sql="select id,title,oColor,oStyle,top from news where top=1 and ifshow=1 order by id desc"
rs.open sql,conn,1,1
if not rs.eof then
do while not rs.eof
t=t+1
%>
<li><span><%= t %></span> <a class="<%=rs("oColor")%>" href="onews.asp?id=<%=rs("id")%>" title="<%=rs("title")%>" target="_blank"><font class="<%=rs("oStyle")%>"><%=left(rs("title"),31)%><% if Len(rs("title"))>30 then %> …<% end if %></font></a></li>
<%
if t>=6 then exit do
rs.movenext
loop
else
response.write "<li>尚无收录</li>"
end if
rs.close
%>
</ul></td>