[求助]关于新闻发布系统的输出!!~~我怎么让他输出两列啊?
下面的是在一列里限制输出10行 我想要在这一个table里 输出两列 每列10行应该怎么办啊???????请大侠们指教<table width="87%" border="0" cellspacing="0" cellpadding="0">
<%
cnt=0
set rs=server.CreateObject("adodb.recordset")
sql="select * from news where news_title='123' and news_title1='124'"
rs.open sql,conn,1,1
do while not rs.eof
cnt=cnt+1
if cnt<10 then
%>
<tr>
<td width="15%" align="right" valign="middle"><span class="STYLE4">·</span></td>
<td width="85%" class="STYLE19"><%=rs("news_name")%>
</tr>
<%
end if
rs.movenext
loop
%>
</table>