Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/06/2002, 01:55
Avatar de TomaHawkk
TomaHawkk
 
Fecha de Ingreso: diciembre-2001
Ubicación: España
Mensajes: 422
Antigüedad: 23 años, 5 meses
Puntos: 1
Re: porque no funciona bien!!!!

Hola!

Prueba con esto:

Código:
  
strSQL2 = "SELECT usuario from usuario where login = '" & login & "'"
Set objRS2 = oConn.Execute(strSQL2) 

If not objRS2.BOF and not objRS2.EOF then
response.write "Usuario encontrado"	
else
response.write "El usuario no existe"
end if

objRS2.close
set objRS2 = nothing
Saludos :)