I am using Struts1.3, I have Jsp page which is showing the list of employees on that page. For this what i did is, I have a action inside that action i am calling a function whi
1 have an Action Form
2 map action form to Action
in struts-config.xml
3 have a field List<Employee>
in your form
4 on JSP use the following code
<logic:iterate id="emp" indexId="i" name="FormName"
property="employees">
<html:text value="${FormName.employees[i].employeeName}" styleClass="fieldbox3"/>
<html:text value="${FormName.employees[i].employeeSal}" styleClass="fieldbox3"/>
<logic:iterate>