我原来的数据调用是这样的.
怎么样才能分开呢??
<table width="46%" border="0" cellspacing="0" cellpadding="0" height="52">
<tr>
<%
sql="select top 8 * from hw where Nsort_id=36 order by hw_id DESC"
rs.open sql,conn,3,3
if rs.eof then
%>
<td width="1%" align="left" valign="top"></td>
<%end if
i=0
do while not rs.eof
i=i+1
%>
<td width="99%" align="left" bgcolor="#FFFFFF"> <table width="77" border="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#111111">
<tr>
<td width="73" height="20" align="center" valign="bottom"><b><a target="_blank" href="views.asp?hw_id=<%=rs("hw_id")%>"><%=rs("hw_name")%></a>
</b></td>
</tr>
</table></td>
<%
if (i mod 1=0) and i>=1 then
%>
</tr>
<tr>
<%
end if
if i>=20 then exit do end if
rs.movenext
loop
rs.close
%>
</tr>
</table>
是显示全部内容.怎么样才能分看呢? 或者是,哪位朋友,给个更好的方法.