Hey Antony,

It is correct that that gives an error. You see it is impossible to call methods in the Expression Language of JSTL. If your bean-class implements java.util.Map however, it is possible to get the item you want by using:

<c:forEach var="i" items="${list}">
 <c:out value="${i["empno"]}"/><br>
</c:forEach>

Grtz,

Martin


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



Reply via email to