Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/05/2003, 13:24
Avatar de bakanzipp
bakanzipp
 
Fecha de Ingreso: noviembre-2001
Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 23 años, 5 meses
Puntos: 0
te falta recorrer el recordset

Set rs= con.execute(strsql)

if not rs.eof and not rs.bof then
while not rs.eof
response.write rs("campo1") &"<br>"
response.write rs("campo2") &"<br>"
...
...
wend
else
response.write "sin registros"
end if