
02/05/2004, 07:12
|
 | | | Fecha de Ingreso: noviembre-2002 Ubicación: Madrid
Mensajes: 854
Antigüedad: 22 años, 5 meses Puntos: 0 | |
Teoricamente, debería funcionar algo así:
intUser = Request.QueryString("USUARIO")
srtSQL = "SELECT * FROM TABLA WHERE UserId = " & intUser
set mr = server.createobject("ADODB.Recordset")
mi_conex.execute(strSQL)
De todas formas, el resto del código que usas no lo entiendo ... yo haría algo así:
Do while not mr.eof or mr.bof
response.write mr("LDEmail")
mr.movenext
loop
mr.close
set mr = nothing |