asp 从数据库中查询的结果假如有6条数据。如何循环成: 比如: 1 2 3...
发布网友
发布时间:2024-10-24 06:25
我来回答
共2个回答
热心网友
时间:2024-10-26 18:34
sqlstr="select * from tableming"
set rs=server.CreateObject("adodb.recordset")
rs.open sqlstr,conn,1,1
do while not rs.eof and not rs.bof
要显示的内容
rs.movenext
loop
热心网友
时间:2024-10-26 18:37
sqlstr="select * from tableming order by 字段"