ASP 如何将数据库数据取出填入已经制好的固定的表格中
表格规定有8行,数据库读出的数据有几行就填几行,填不满的就空着,怎么实现
2010-02-03 23:50
2010-02-04 08:13
程序代码:maxRow = 7
if rs.recordcount > 8 then maxRow = rs.recordcount
for i = 0 to maxRow
response.write "<tr><td>"&i&"</td></tr>"
next
2010-02-04 10:46