Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/06/2002, 08:45
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: Mostrar msg si no hay entradas

Código:
  
sql="select * from tabla where campo='" & dato &"';"
set rs=conexion.execute(sql)

if (rs.eof) and (rs.bof) then
response.write "No existen registros"
else
'lo que quieras
end if