Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/07/2008, 11:25
robert_du
 
Fecha de Ingreso: julio-2008
Mensajes: 5
Antigüedad: 15 años, 9 meses
Puntos: 0
Respuesta: Dudas con html

Encontre un ejemplo que parece que hace algo parecido a lo que quiero solo que esta en php y yo voy a utlizar jsp.
Tengo pensado que puede ser algo asi:
<body>
<form action="/Algo" method="post" enctype="text/plain" name="agregar">
<input type="submit" name="opcion" value="Eliminar">
<table border="1">
<tr>
<th>Eliminar</th>
<th>Cabereca 2</th>
<th>Cabereca 3</th>
</tr>
<tr>
<td><input type="checkbox" name="musica" value="rock"></td>
<td><a href="http://www.google.com">Dato 2</a></td>
<td>Dato 3</td>
</tr>
<tr>
<td><input type="checkbox" name="musica" value="rock"></td>
<td>Dato 5</td>
<td>Dato 6</td>
</tr>
</table>
</form>
</body>