Hi
Am trying to read from hashtable using JSTL tags in
JSP. What I found when doing a c:forEach is , with Hastables, it returns lastIn firstOut order from the Hashtable when I do the looping. How can I reverse it. I wud like to have FirstInFirstOut Oreder. Here's the code snippet:
<c:forEach var="item" items="${testHash}">
The next Hash key is <c

ut value = "${item.key}"/> <br/>
The next Hash value is <c

ut value = "${item.value}"/> <br/>
</c:forEach>
Also is there a good reference site for EL and JSTL with lot of examples ?
Thanks for u time.
RS