I have a
jsp which has html:text boxes which are indexed. When the user enters some value in the text box how to get those values in the action class of
struts.
for example:
<logic:iterate id="XXX">
<html:text name="XXX" property="YYY" indexed="true"/>
</logic:iterate>
Now i need to access the value of this indexed html:text inside my action class
public class action extends Action{
???
}
and also the getter and setter method's for the property "YYY"
Kindly help me in this.