Ver Mensaje Individual
  #4 (permalink)  
Antiguo 31/05/2005, 04:56
MikiBroki
 
Fecha de Ingreso: abril-2002
Mensajes: 1.014
Antigüedad: 23 años, 1 mes
Puntos: 8
Efectivamente, según lo hacías intentabas ejecutar msgbox en el propio servidor, podrías hacer algo así:

<%
if rs.eof then
%>

<SCRIPT LANGUAGE="javascript">
alert("no hay registros");
</SCRIPT>

<%
end if
%>

Te lo pongo en JavaScript porque VBScript no funciona en Mozilla.

Un saludo.