Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/01/2004, 13:54
cesar_san
 
Fecha de Ingreso: octubre-2003
Ubicación: Lima-Peru
Mensajes: 32
Antigüedad: 20 años, 5 meses
Puntos: 0
Prueba q al hacer click en el boton del submit te lleve a una funcion q te envie el email y a la vez te redireccione a una pagina donde te diga q el mansaje fue enviado:

<head>
<script language="JavaScript">
<!--
function Envio(formname){
formulario= eval('document.' + formname);
formulario.submit(); //aqui et envia el formulario
window.location.href="/ envioExito.html"
}
-->
</script>

</head>


<form method="post" action="tu ruta" name="formu">
... tu codigo ..
... tu codigo ..

<input type="button" name="button1" value="Enviar" onClick="Envio()">

</form>