Hi:
When user is in page 1, he is asked to enter an integer. Let us say he entered 18 In the next page we show 18 Text-boxes: <html:text ./> This is easy to generate using the following: <c:forEach var="min" begin="1" end="${numSectionsAsInt}" step="1"> <tr> <td><html:text name="courseForm" property="sectionID" value="${min}" disabled="true"/></td> <td><html:text name="courseForm" property="numPages(${min})" /></td> </tr> </c:forEach> But I don't understand what should go in the properties tags. What Data Structure should be used to represent them in my ActionForm. Thanks. Chetan