i have a programs_offered table in my database(oracle).
admin has the authority to update any fields in the table and this is to be achieved through a jsp page where the admin is provided with a view of all the programs_offered in a table format on the view.jsp page..here i am priniting the fields by iterating a list of programs_offered bean..corresponding to each row is an edit button..the moment the admin clicks on that edit button,he is directed to another page where he has all selected row values in separate textboxes and he can edit any textbox he needs(except program id) and the moment he clicks on save button,the fields are updated in the table..
i am able to achieve this for only the first record in the table on view.jsp page..how to achieve it for subsequent fields??

p.s:-not getting the solution with hidden text field!!