(高手)asp数据如何分两列显示

<%setrs_news=server.createobject("adodb.recordset")sqltext4="selecttop8*fromnewswhere... <%
set rs_news=server.createobject("adodb.recordset")
sqltext4="select top 8 * from news where BigClassName='公司新闻' order by id desc"
rs_news.open sqltext4,conn,1,1
%>
<table class=newstitle style="MARGIN-TOP: 6px" cellspacing=0 cellpadding=0
width=461 border=0>
<tbody>
<%i=0
do while not rs_news.eof%>
<tr>
<td width=317 height=26><a href="shownews.asp?id=<%=rs_news("id")%>" target="_blank"><font color="#6f6f6f"><%=cutstr(rs_news("title"),22)%></font></a></td>
<td class=newstime width=125 height=26><span style="color: #bbbbbb"><%=rs_news("adddate")%></span></td>
</tr>

<%rs_news.movenext
i=i+1
if i=8 then exit do
loop
rs_news.close %>
<tr>
展开
 我来答
龙城一木
2012-05-31
知道答主
回答量:57
采纳率:0%
帮助的人:24.9万
展开全部
已经是两列了呀,一列显示cutstr(rs_news("title"),22);一列显示rs_news("adddate");
如果你是想4列显示的话;
<%i=0
do while not rs_news.eof%>
<tr>
<td width=317 height=26><a href="shownews.asp?id=<%=rs_news("id")%>" target="_blank"><font color="#6f6f6f"><%=cutstr(rs_news("title"),22)%></font></a></td>
<td class=newstime width=125 height=26><span style="color: #bbbbbb"><%=rs_news("adddate")%></span></td>
<% if i mod 2 <> 0 then response.write(" </tr>")

rs_news.movenext
i=i+1
东方行
2012-05-29 · 超过85用户采纳过TA的回答
知道小有建树答主
回答量:270
采纳率:0%
帮助的人:195万
展开全部
<%
set rs_news=server.createobject("adodb.recordset")
sqltext4="select top 8 * from news where BigClassName='公司新闻' order by id desc"
rs_news.open sqltext4,conn,1,1
%>
<table class=newstitle style="MARGIN-TOP: 6px" cellspacing=0 cellpadding=0
width=461 border=0>
<tbody>
<%do while not rs_news.eof%>
<tr>
<%
i = 0
Do WHILE i <> 2 AND not rs_news.eof%>
<td width=317 height=26><a href="shownews.asp?id=<%=rs_news("id")%>" target="_blank"><font color="#6f6f6f"><%=cutstr(rs_news("title"),22)%></font></a></td>
<td class=newstime width=125 height=26><span style="color: #bbbbbb"><%=rs_news("adddate")%></span></td>
</tr>

<%rs_news.movenext
i = i + 1
loop
%>
</tr>
<%loop
rs_news.close
%>
更多追问追答
追问
还是显示不了啊
追答
还是1列?还是现实不出内容?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
草野闲羊
2012-05-29 · TA获得超过117个赞
知道小有建树答主
回答量:206
采纳率:0%
帮助的人:248万
展开全部
这是全部代码吗?十有八九是html标签嵌套错误,你仔细注意一下那个tbody和那些tr
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式