| Author |
Collections in Struts jsp
|
titan sim
Greenhorn
Joined: Oct 06, 2003
Posts: 9
|
|
I've a value object, which returns a id and email Collection. My action class will put the VO into the actionForm and then into request scope. On my jsp, I can display the id by using <html:text property=vo.id>. However, if I use <html:text property=vo.id>, it will not display my email values. how do i display the email collection, it should be able to display 1 textbox for each value. Eg. if my Email has value abc@yahoo.com, abc@abc.com. then the display will be something like this: <input type=text value=abc@yahoo.com name=??> <input type=text value=abc@yahoo.com name=??> pls help, thanks!
|
 |
Junilu Lacar
Bartender
Joined: Feb 26, 2001
Posts: 4115
|
|
|
Either use logic:iterate or the JSTL forEach. See this article: http://www-106.ibm.com/developerworks/java/library/j-jstl0318/
|
Junilu - [How to Ask Questions] [How to Answer Questions] [MiH]
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Collections in Struts jsp
|
|
|