
15/12/2002, 17:44
|
 | | | Fecha de Ingreso: febrero-2002 Ubicación: España
Mensajes: 2.364
Antigüedad: 23 años, 2 meses Puntos: 1 | |
Prueba con esto, a ver si realmente te esta haciendo bien la SQL y te da los datos del tipo que quieres modificar.
Set rsUser = Server.CreateObject("ADODB.Recordset")
rsUser.open "username WHERE username = '" & username & "'", conn, 3, 3
do while not rsuser.eof
response.write(rsUser("nombre"))
response.write(rsUser("lugar"))
rsuser.movenext
loop
rsUser.close
set rsAdd = nothing |