pack 0 Newbie Poster

I am writing a jsp page where a set of rows has been created dynamically according to the number of rows in particular database table.Each row consist of 5 read only values, one text box, one checkbox and a set of 4 radiobuttons.

The radio buttons and checkbox are named dynamically according the row number as follows: <input type="checkbox" name="<%= check %>" id="<%= check %>" > <input type="radio" name="<%= radio %>" id="<%= radio %>" value="250" > I am not sure how should I approach when I have to update the values all at a time in one shot.


Seek your suggestion regarding that...