请问能横排显示一个table里面的数据吗?
[bo]如何横排显示数据?[/bo]如题,以下是我的 index.asp 代码, 我现在的图片和一些数据都包括在了一个表格里~~
我想让 每页显示 8个图片,2个一排[bo](即横排显示加粗的table里面的数据)。[/bo]
现在的代码是每页显示8个,都显示到一竖上了,请问如何修改呢?
即 把表格table里的
<table> 图片 </table>
<table> 图片 </table>
<table>图片 </table>
<table>图片 </table>
..........
改成
<table>图片 </table> <table>图片 </table>
<table>图片 </table> <table>图片 </table>
<table>图片 </table> <table>图片 </table>
显示.
我的具体代码:
<%
exec="select top 2 * from newsinfo where [images]<>''and class=14 order by time desc "
set rs=server.createobject("adodb.recordset")
rs.open exec,conn,1,1
%>
<%
if rs.eof and rs.bof then
response.write("暂时没有数据")
else
do while not rs.eof
%>
[bo]<table width="160" border="0" cellpadding="0" cellspacing="0">[/bo]
<tr>
<td width="160" height="110" align="center" valign="middle"><table width="140" height="90" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="middle" background="images/picture_bg.gif"><table width="130" height="80" border="0" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#333333"><img src="<%=Rs("images")%>" width="130" height="80"></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="160" border="0" cellspacing="0" cellpadding="2" class=body_font>
<tr>
<td align="center"><strong><%=left(Rs("title"),10)%></strong></td>
</tr>
</table></td>
</tr>
<tr>
<td align="center"><table width="130" border="0" cellspacing="1" cellpadding="1">
<tr>
<td><table width="130" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#333333"><img name="" src="" width="1" height="1" alt="" style="background-color: #333333"></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="160" border="0" cellspacing="0" cellpadding="5" class=body_font>
<tr>
<td><%=left(Rs("content"),40)%></td>
</tr>
</table></td>
</tr>
[bo]</table>[/bo]
<%
rs.movenext
loop
end if
%>