如何把数据库的记录,显示成4行4列.??
如何把数据库的记录,显示成4行4列.??分页我自己会,可怎么使他成4行4列的显示呢??.4行5列又怎么分??
2006-04-21 09:10
<table>
<tr>
<%for i=0 to 15%>
<td></td>
<%if (i+1) mod 4=0 then response.write "</tr><tr>"
next%>
</tr>
</table>
2006-04-21 09:59