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>

[2731 byte] By [shailu_ta] at [2007-11-27 6:28:11]
# 1
explain it in clear understandable way
haiia at 2007-7-12 17:50:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

> explain it in clear understandable way

Agreed. And use code tags to format your post. It's the button that says 'code' when you're posting.

From what I can understand ( didn't go through the code at all ), you want to access one specific parameter out of 4. All hidden fields will be submitted with the form and you can't stop that.

You should know which hidden fields correspond to which checkbox right? So why can't you just check for that value or use just that value? I really don't see the problem here.

nogoodatcodinga at 2007-7-12 17:50:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...