Hello,
<html:form action="/myaction.do">
<html:text property="player"/>
<html:text property="player"/>
<html:text property="player"/>
<html:text property="player"/>
<html:text property="player"/>
<html:submit/>
</html:form>
In the above JSP, there are five TEXT form field with the same name
"player", how can I design my ActionForm code for this case?
I tried,
public void setPlayer(int[] player) {
this.player = player;
}
public int[] getPlayer() {
return player;
}
But it seems not working !!!
Best regards,
Eric
==========================
If you know what you are doing,
it is not called RESEARCH!
==========================
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]