Ver Mensaje Individual
  #7 (permalink)  
Antiguo 02/07/2009, 12:40
erlolialo
 
Fecha de Ingreso: mayo-2009
Mensajes: 72
Antigüedad: 15 años
Puntos: 0
Respuesta: Problema formulario

El codigo HTML que genera la pagina .jsp es el siguiente:
Código:
<form method="post">
<table>
    <tr>
          <td> <input type="checkbox" name seleccion" value=1 /> </td>
          <td> 1 </td>
          <td> Antonio </td>
          <td> 650789654 </td>
          .......
     </tr>
     <tr>
          <td> <input type="checkbox" name seleccion" value=4 /> </td>
          <td> 4 </td>
          <td> Maria</td>
          <td> 610234567 </td>
          .......
     </tr>
     .........
</table>
.........
<input type="button" value="Borrar" onclick="llamar('deleteUser');">
</form>