Sir i have an issue of updating my array list connected wd jsp n action servlet along wd form bean..
here is my frst jsp page where i m displaying the list:i want to update this list wd servlet where roll no will be the condition do help??
<%Iterator itr;%>
<% ArrayList data= (ArrayList)request.getAttribute("data");
for (itr=data.iterator(); itr.hasNext(); )
{
%>
<tr>
<td width="40"> <input type="text" value="<%=itr.next()%>"/></td>
<td width="40"><input type="text" name="th2" value="<%=itr.next()%>"/></td>
<td width="40"><input type="text" value="<%=itr.next()%>"/></td>
<td width="40"><input type="text" value="<%=itr.next()%>"/></td>
<td width="40"><input type="text" value="<%=itr.next()%>"/></td>
<td width="40"><input type="text" value="<%=itr.next()%>"/></td>
</tr>
<%}%>