Ver Mensaje Individual
  #6 (permalink)  
Antiguo 25/06/2002, 13:40
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
Re: Borrar registros

entonces quiere decir que si te trae registros y supuestamente ese registro no existe...es raro...prueba con esto y dinos que te imprime

Código:
  
Set rs = Server.CreateObject ("ADODB.Recordset")
strSQL = "SELECT * FROM empleados WHERE Nombre ='" & nombre & "' and Apellido ='" & apellido & "'" 

response.write strSQL

Set rs=oConn.execute(strSQL)

if not(rs.eof) and not(rs.bof) then

response.write "Nombre : "&rs("nombre")&"<br>"
response.write "Nombre : "&rs("apellido")&"<br>"

end if
veamos que tira..cuentanos