Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/12/2005, 18:17
Avatar de lily_cv
lily_cv
 
Fecha de Ingreso: noviembre-2005
Mensajes: 165
Antigüedad: 18 años, 5 meses
Puntos: 0
podrias hacer esto:

<script>
function cargar_pagina(){
form1.action="pagina_deseada.php";
form1.submit();
}
</script>

<body onLoad="cargar_pagina">
<form name="form1" method="post">
<intput type="text" name="texto1" >
<intput type="text" name="texto2" >
<intput type="text" name="texto3" >
.
.
.
</form>
</body>