Ver Mensaje Individual
  #7 (permalink)  
Antiguo 25/06/2002, 10:59
chelys
 
Fecha de Ingreso: junio-2002
Mensajes: 18
Antigüedad: 22 años, 11 meses
Puntos: 0
Re: una función para validar una fecha

esta es mi función la de arriba me equivoque

<script LANGUAGE="VBScript">

sub funcionfech()

Dim Formu
Set Formu = Document.formulario
If IsDate(Formu.text2.Value) Then
alert "FECHA INVALIDA"
Formu.text2.Value = ""
Formu.text2.focus()
end if
end sub
</scripta>