I am trying to display values in a map set as request.setAttribute("map",
mapObject) in an Action.
JSP looks like:
<html:select property="selValue">
<html:option value="Select One"></html:option>
<bean:parameter id="aMap" name="map"></bean:parameter>
<logic:iterate id="element" name="aMap">
<html:option value="value"></html:option>
</logic:iterate>
</html:select>
Problem is, <bean:parameter> expects a request parameter with name "map".
I get the following error:
javax.servlet.jsp.JspException: No parameter map was included in this
request
Which Tags can get the attributes set in a request?
Thanks for any help.
Reddy
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]