Iterar registros de una consulta SELECT en ASP CLASSIC
<%
txtsql="select * from ......."
set rs=db.execute(txtsql)
if not(rs.eof and rs.bof) then
do while not(rs.eof)
'do something
rs.movenext
loop
else
'No records found
end if
%>