捆饶了好多天的问题
<table width="80%" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
<td bgcolor="#6386BD" height="40" align="center"><font color="#FFFFFF">
<%
if id = 0 then
response.Write "产 品 信 息 添 加"
else
response.Write "产 品 信 息 修 改"
end if
%>
</font> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="3"></td>
</tr>
<tr>
<td height="22" background="images/bg_title01.gif"></td>
</tr>
</table>
<table width="67%" border="1" align="center">
<tr>
<td height="140"><table width="162" border="1" cellpadding="1" cellspacing="1">
<tr>
<%for i=1 to rs.recordcount%>
<td width="162">
<table width="192" border="1">
<tr>
<td width="182" height="121"><%=rs("minipic")%></td>
</tr>
<tr>
<td height="35"><%=rs("huohao")%></td>
</tr>
</table>
<%
if(i mod 2=0) then
response.write "<br>"
end if
rs.movenext
next
rs.close
%>
</td>
</tr>
</table></td>
</tr>
</table>
我已经让所有的图片显示在一行了
我想让2张图片显示后,第2排再显示2张图片显示在一行了.为什么我这样做就是不能换行?