Código:
<script language="javascript">
<!--
function getDate()
{
var hoy = new Date();
var fecha = (hoy.getDate() + 1) + "/" + hoy.getMonth() + "/" + (1900 + hoy.getYear())
return fecha;
-->
}
</script>
El llamado de la funcion:
Código HTML:
<form name="" action="" method="post" onSubmit="javascript: campo.value = getDate(); return true;">
o lo usas donde tu necesites.