In my
jsp form, i have lots of similar fields. After submit when i want to read the fields from the actionform, i have to go through each field. Since all the fields are processed similarly i would rather write a loop and process the field values.
Right now what i have to do is
sField = form.getsField1();
//start processing
//....
//end processing
sField = form.getsField2();
//start processing
//....
//end processing
sField = form.getsField1();
//start processing
//....
//end processing
... and so on.
this gets me
suggestions please. thank you.