Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/04/2009, 09:21
f0n
 
Fecha de Ingreso: abril-2009
Mensajes: 54
Antigüedad: 15 años, 8 meses
Puntos: 1
Respuesta: boton enviar boton previsualizar

Al hacer los dos botones
uno de ellos

<input type="button" name="boton1" onclick="enviar(1);">

y el otro

<input type="button" name="boton2" onclick="enviar(2);">

y luego una función javascript del estilo

Código:
<script type="text/javascript">
<!--//
enviar(i) {
if (i == 1)
    document.ELFORMULARIO.action = "DIRECCION 1";
else
  document.ELFORMULARIO.action = "DIRECCION2";

document.ELFORMULARIO.submit();
}
//-->
</script>