ideal para formularios.
Si reconoce la fecha la formatea tipo mysql,
si no la reconoce, salta una alerta y se regresa.
Código:
<%
function Cfecha (fecha)
if IsDate(Fecha) then
anho=year(fecha)
mes = month (fecha)
dia =day(fecha)
Cfecha=anho & "/" & mes & "/" & dia
Elseif (Fecha<>"") then
MM_abortEdit = "True"
%>
<script language="JavaScript">
alert("Formato de Fecha no válido: DD/MM/AAAA");
history.back();
</script>
<%
end if
end function
%>