Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/02/2005, 11:37
Avatar de lalogrosz
lalogrosz
 
Fecha de Ingreso: mayo-2002
Ubicación: Capital Federal
Mensajes: 339
Antigüedad: 22 años, 7 meses
Puntos: 6
Solucion

Código HTML:
<SCRIPT LANGUAGE="JavaScript">
        function Nom(form,boton){
            form.botPress.value = boton;
            form.submit();
        }

</script>

  <form>
  <input type="hidden" name="botPress">
  <input type="button" name="operacion" value="eliminar" onclick="Nom(this.form,'eliminar')">
  <input type="button" name="operacion" value="modificar" onclick="Nom(this.form,'modificar')">

  </form> 
Los botones no son submit, y se envia luego que le asigna el valor al hidden.

Suerte