现在的效果:
|图片|
|图片|
|图片|
|图片|
|图片|
|图片|
|图片|
|图片|
|图片|
我想要的效果
|图片||图片||图片|图片|
|图片||图片||图片|图片|
|图片||图片||图片|图片|
<%
strsql="select * from imgurl"
set rs=server.createobject("ADODB.recordset")
rs.open strsql,conn,1,1
do until rs.eof
%>
<table width="12%" height="102" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="37%"><img src="showimg.asp?id=<%=rs("id")%>" width="100" height="100"></td>
</tr>
</table><%
rs.movenext
loop
rs.close
conn.close
%>