![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
23/12/2005, 18:17
|
![Avatar de lily_cv](http://static.forosdelweb.com/customavatars/avatar122390_1.gif) | | | Fecha de Ingreso: noviembre-2005
Mensajes: 165
Antigüedad: 19 años, 2 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> |