
26/05/2005, 03:57
|
| | Fecha de Ingreso: abril-2002
Mensajes: 1.014
Antigüedad: 23 años Puntos: 8 | |
Si el campo es texto (si no, quitar las comillas simples):
rs.open "select * from Table where campo = '" & request.form("txt") & "'"
if not rs.eof then
response.write("el registro ya existe")
else
'Insertar
end if |