How to send multiple hidden parameter for a selected check box
Hi This is my code in a jsp
I want to send 4 hidden parameters with selected file.
I want to delete a file ,only for that file i need to send hidden parameters but when I am selecting only one checkbox,hidden parametrs for all the three files are going .
How to get the parameters only for selected file?
Below is my code in jsp..
Please help me in this..
==============================================================
<c:if test="${not empty physFilesls}">
<%
out.println("check>>>");
%>
<table class= "table" id="filedetails" width="70%" cellpadding=2>
<tr class="boldtable" id="phyFileName">
<!-- <td class="tabledata" width="20%">File Name :</td> -->
<td class = "boldtable" width="3%"> </td>
<td class = "boldtable" width="33%"><a name="src"><b>File Name</b></td>
<td class = "boldtable" width="9%"><a name="rdate"><b>Date</b></td>
<td class = "boldtable" width="10%"><a name="fversion"><b>File Version #</b></td>
<td class = "boldtable" width="10%"><a name="Aversion"><b>A Version #</b></td>
<td class = "boldtable" width="10%"><a name="Bversion"><b>B Version #</b></td>
</tr><c:forEach var="phyfilename" items="${physFilesls}">
<tr>
<td class = "tabledata" width="3%">
<input type="checkbox" name="rseqid" value="<c:out value="${phyfilename.upldSeqId}"/>">
<input type="hidden" name="rfromMth" value="<c:out value="${phyfilename.srcFrMth}"/>">
<input type="hidden" name="rtoMth" value="<c:out value="${phyfilename.ToMth}"/>">
<input type="hidden" name="rfromYr" value="<c:out value="${phyfilename.FrYr}"/>">
<input type="hidden" name="rtoYr" value="<c:out value="${phyfilename.ToYr}"/>">
</td>
<td class = "tabledata" align="left">
<c:out value="${phyfilename.FileNames}" />
</td>
<td class="tabledata" align="left">
<c:out value="${phyfilename.Date}"/>
</td>
<td class="tabledata" align="left">
Ver
<c:out value="${phyfilename.fileVersion}"/>
</td>
<td class="tabledata" align="left">
<c:out value="${phyfilename.Aversion}"/>
</td>
<td class="tabledata" align="left">
<c:out value="${phyfilename.Bversion}"/>
</td>
</tr>
</c:forEach>

