[QUOTE]<td>
<%set rs=conn.execute("select * from editindex_life where lb='公众信息' and Auditing=1")
do while not rs.eof
%>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="23"><font color="#000066">·</font><a href="<%=rs("url")%>" target="_blank"><font color="<%=rs("color")%>"><%=rs("title")%></font></a></td>
</tr>
<tr>
<td height="2" background="images/b_back.gif"></td>
</tr>
</table>
<%rs.movenext
loop
rs.close
set rs=nothing%>
</td>
[/QUOTE]
改成
<%set rs=conn.execute("select * from editindex_life where lb='公众信息' and Auditing=1")
i=0
do while not rs.eof
i=i+1%>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="23"><font color="#000066">·</font><a href="<%=rs("url")%>" target="_blank"><font color="<%=rs("color")%>"><%=rs("title")%></font></a></td>
</tr>
<tr>
<td height="2" background="images/b_back.gif"></td>
</tr>
</table>
</td>
<%if i mod 10 =0 then response.write "</tr><tr>"
rs.movenext
loop
rs.close
set rs=nothing%>