JavaServer Pages (JSP) and JSTL - Dynamic creation & selction of rows
Hi,
I am using JSP to dynamically populate & display the database records in a HTML table.
I want to select a particular data row using a checkbox. I can create checkbox like below
<% while(resultset.next()){ %>
<TR>
<TD> <input name="ck1" type="checkbox" value="" /></td>
<TD>
</TR>
<% } %>
but the probelm is that, though multiple checkboxes appear on screen with each row, actually it's only one with "ck1" name.
How can i make selection of row using checkbox?
Can someone help me with this issue?
Thanks

