我的技术不好,各位大大别见笑啊!
<ul>
<% set rs = conn.execute("select top 12 * from member where userType>2 and ispass=1 and isdel=0 and islock=0 order by views desc")
if not rs.eof or not rs.bof then
do while not rs.eof
%><li><a rel="external" href="corp/index.asp?id=<%=rs("userid")%>"><%=rs("title")%></a></li>
<% rs.movenext
loop
else
response.write"<li>暂无信息!</li>"
end if
rs.close
set rs=nothing
%>
</ul>
这是原来的代码:有点错误返回的数据没受Top 12 的限制
我想把它修改为:
第一列显示:top12,
第二列显示:13-24,
第三列显示:25-36.
每列宽度为159
每条信息最多显示22个字符
例如:中国联想电脑有限集团责任公司
只显示为:中国联想电脑有限集团责..
但替换:alt="中国联想电脑有限集团责任公司"
如图:
哪位大大能帮忙写一下这段程序啊!