<table width="100%" border="0" cellspacing="1" cellpadding="2" class="tableBorder">
<%for(int i=0;i<productDetails.size();i++)
{ String pid=((productVO)productDetails.get(i)).getPid();%>
<tr>
<td><input type="checkbox" value="<%out.println(((productVO)productDetails.get(i)).getPname());%>" name="details"></td>
<td width="45%"><a href="#" onclick="javascript:productDetails('<%=pid%>')" title="Click here to view Product Details"><u><font color="blue"><%out.println(((productVO)productDetails.get(i)).getPid());%></font></u></a></td>
<td width="45%"><%out.println(((productVO)productDetails.get(i)).getPname());%></td>
<td width="35%"><%out.println(((productVO)productDetails.get(i)).getPrice());%></td>
<td width="35%"><%out.println(((productVO)productDetails.get(i)).getStocks());%></td>
</tr>
<%}%>
</table>
i written above logic to display the
jsp.. In tat i want to achieve some other operation, when i click on the check box for a particular row..