| Author |
How to assign these 3 values to form bean
|
S Venkatesh
Ranch Hand
Joined: Jun 27, 2005
Posts: 464
|
|
I have a HTML page with 3 text boxes with same name. Now i want to know how struts Framework handles this case and how i can retrive all the 3 values? Code snippet of the JSP with the text boxes is as follows. <html:form action=�someURL�> <html:text property=�myTextBox� value=�1�> <html:text property=�myTextBox� value=�2�> <html:text property=�myTextBox� value=�3�> <html:submit name=�submit� value=�submit�> </html:form> In the normal case we will use following stmt to get above 3 values(in case we are reading values in a servlet). String myTextBox[]=request.getParameterValues(�myTextBox�); How form bean maintains these 3 values automatically? Thanks Venkatesh S [ March 09, 2006: Message edited by: Venkatesh Sai ]
|
 |
Mishra Anshu
Ranch Hand
Joined: Sep 16, 2003
Posts: 224
|
|
Here is a way out :- this
|
"Ignorance is bliss"
|
 |
 |
|
|
subject: How to assign these 3 values to form bean
|
|
|