Hi,

I have a jsp page where I show a table with some fields of a session collection (listUsers). In every row of the table I want to call a new jsp page in order to show all fields.

<c:forEach items='${listUsers}' var='lee'>
      <tr>
<td class="tablaFilaVariosResultados1"><c:out value='${lee.lastName}'/></td> <td class="tablaFilaVariosResultados1"><c:out value='${lee.name}'/></td> <td><html:link action="searchUser.do?parametro=editUser" paramName="listUsers" paramId='${lee.dni}'>Edit</html:link></td>
     <tr>
<c:forEach>

If I click on the link Edit, I want to go to a new jsp where I show all fields related with lee.name and lee.lastName.

If I do
Collection users = (Collection)request.getSession().getAttribute("listUsers"); then I obtain all Collection info, not the info related with the selected row.

How can I do that?

Thanks a lot.

_________________________________________________________________
Un amor, una aventura, compañía para un viaje. Regístrate gratis en MSN Amor & Amistad. http://match.msn.es/match/mt.cfm?pg=channel&tcid=162349


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to