Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/04/2003, 16:13
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 3 meses
Puntos: 381
Bueno, por si te decides a guardarla del cliente puedes hacer algo así:

<script language="javascript">
function sacarFechilla(){
fecha = new Date()
dia = fecha.getDate()
if(dia < 10)
{dia = "0" + dia}
mes = fecha.getMonth()
if(mes < 10)
{mes = "0" + mes}
anio = fecha.getYear()
anio = anio.toString()
if (anio.length>2)
{anio=anio.substring(0,2)}
mifechita = dia + "-" + mes + "-" + anio
document.nombredelFormu.nombreDelCampo.value=mifec hita
}
</script>

y luego a tu body le pides

<body onLoad="sacarFechilla()">

Creo que habría de furular sin problemas