¿¿¿????...huuaa...ke raro...estas segura que probaste asi?
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
strSQL = "DELETE FROM empleados WHERE Nombre='"&nombre&"' and Apellido='"& apellido &"'"
rsdel=Set oConn.execute(strSQL)
Response.Write ("<p> Nombre borrado: " & Nombre & " " & Apellido & " " & "<br>")
rsdel.Close
else
response.write "No existe el Registro"
end if