发布网友 发布时间: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 字段"