Hola amigos a ver quien me puede ayudar, el tema es este:
Estoy desarrollando una aplicacion en jsp que usa spring 2.5; hasta el momento no he tenido problemas, y el asusnto es este: tengo un formulario en el que recojo algunos datos
<form:form method="post" commandName="ethform">
<table border="0" cellspacing="0">
<thead>
........
</thead>
<tbody>
<tr>
<td><fmt:message key="frm.eth"/></td>
<td>
<form:input path="eth1"/>
<form:errors path="eth1" cssClass="error"/>
</td>
<td><fmt:message key="eth.t1"/></td>
</tr>
<tr>
<td><fmt:message key="frm.deta"/></td>
<td>
<form:input path="detalle"/>
<form:errors path="detalle" cssClass="error"/>
</td>
<td><fmt:message key="eth.t5"/></td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="method" value="Guardar"/>
<input type="submit" name="method" value="Actualizar"/>
</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="post" id="example">
<h2 class="title"><fmt:message key="eth.who"/></h2>
<div class="story">
<p><fmt:message key="eth.list"/> <input type="submit" name="method" value="Refrescar"/></p>
<table border="1" cellspacing="1">
<thead>
<tr>
<th></th>
<th>Interfaz</th>
<th>Detalle</th>
</tr>
</thead>
<tbody>
<c:forEach items="${eths}" var="eth">
<tr>
<th><c:out value="${eth.id}"/></th>
<th><c:out value="${eth.eth}"/></th>
<th><c:out value="${eth.detalle}"/></th>
<th>
<input type="hidden" name="idload" value="${eth.id}" id="${eth.id}"/>
<input type="submit" name="method" value="Cargar" title="Id: ${eth.id}"/>
</th>
<th>
<input type="hidden" name="iddel" value="${eth.id}"/>
<input type="submit" name="method" value="Borrar"/>
</th>
</tr>
</c:forEach>
</tbody>
</table>
</form:form>
como pueden ver creo 2 botones por cada fila que me carga los datos (Cargar y Borrar), lo que deseo es que cuando presiono en el botón digamos de la fila 3, me recoja el id de la fila y me lo envie al controller, el problema que tengo es que solo me devuelve el indice de la primera fila, como lo puedo hacer?
P.d: los demás eventos funcionan como necesito...
como lo soluciono o que es lo que puedo hacer ? que me recomiendan? ayuda y gracias de antemano