Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/04/2003, 15:59
Avatar de mazingerz
mazingerz
 
Fecha de Ingreso: febrero-2003
Ubicación: Sarasota FL
Mensajes: 147
Antigüedad: 22 años, 2 meses
Puntos: 0
<%@ Language=VBScript %>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<P>Ingrese su Login y contraseña </P>
<%=Saludo()%>
La Horas es : <%=Time%>
La Fecha : <%=Date%>
</form>
</div>
</body>
</html>
<%
Function Saludo()
if Hour(Now)< 12 then
Saludo = "Bienvenido buenos Días!!!!"
elseif Hour(Now)<20 then
Saludo = "Bienvenido buenas tardes!!!"
else
Saludo = "Bienvenido buenas Noches!!!"
end if
end function
%>