Hicimos este script para caducar la pag en una fecha determinada, en este caso 1-abril-2002, pero cuando lo utilizo solamente funciona cambiando el mes, ¿alguien me puede decir clua es el error?
<html>
<head>
<script language="JavaScript">
function Verifica() {
f = new Date();
d = f.getDay();
m = f.getMonth();
a = f.getYear();
if (d >= 1 && m >= 4 && a > 2002) {
location.href="caduca.htm"; }
else {
location.href="vigente.htm"; }
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div align="center" style="width: 901; height: 491">
<INPUT TYPE="button" NAME="Boton" VALUE="Ir" onClick="Verifica();">
<p align="left">&nbsp;</p>
</div>
</body>
</html>
Gracias por su ayuda!
Inex