On Tue, 2003-06-24 at 10:46, O_Parthasarathy Kesavaraj wrote:
 
> > O_Parthasarathy Kesavaraj írta:
>       Thanks Tib.I did look at the docs.But i got struck up.If u have any
> sample code pls send.

I admit the docs I think are lame on this area. This should work..

<logic:iterate id="element" name="yourMap">
    <bean:write name="element" property="key"/> - 
    <bean:write name="element" property="value"/><BR>
</logic:iterate>

JSTL should be something like...

<c:forEach var="element" items="${yourMap}">
  <c:out value="${element.key}"/> -
  <c:out value="${element.value}"/><br>
</c:forEach>

-- 
Rick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to