2007/10/11, Baptiste GAILLARD <[EMAIL PROTECTED]>: > <item value="List Users" link="<s:url action= " > list " / >" />
You cannot put JSP code in a string and pretend it to be interpreted.
It remains simply a string!
In this case you can write:
<item value="List Users" link="list" />
and in your JSP:
<c:forEach var="item" items="${leftMenuLinks}">
<tr>
<td><a href="<s:url action="list"
/>">${item.value}</a></td>
</tr>
</c:forEach>
HTH
Antonio
