Hi, still looking for help.
On 10/31/07, Raghuveer Rawat <[EMAIL PROTECTED]> wrote: > > Hi, I have form which allows user to invite other users. A user can invite > a max of 10 users at a time. A row contain First Name, Last Name, and Email > Address. > How should I name these textfields (OGNL expression) and how should I > retrieve these values in Action Class? > > > <table> > > < > tr> > > <td>First Name</ td> > > <td>Last Name</ td> > > <td>Email Address</ td> > > </tr> > > <tr> > > <s:textfield name="firstName" size="25" maxlength ="20"/></td> > > <s:textfield name="lastName" size="25" maxlength ="20"/></td> > > <s:textfield name="email" size="25" maxlength= "20"/></td> > > </tr> > > similarly 9 more rows like this. > > </table> > > >