Re: The Tag and Drop Down Menu

2004-09-14 Thread Jason Lea
Something like this in JSP1.2: assuming the Struts form bean is called 'formbean' and the property is called 'property' selected> or in JSP2.0: ${item.label} Caroline Jen wrote: To make it simple, there is a JavaBean. This JavaBean has two properties: label and

The Tag and Drop Down Menu

2004-09-14 Thread Caroline Jen
To make it simple, there is a JavaBean. This JavaBean has two properties: label and value. Because I have a number of label and value pairs, I have a Collection of this JavaBean(s). To create a drop down menu, I do the following: How do I use the tag to do the same thing?