Corect syntax to pass get request parameter value by using EL
Posted
by Stardust
on Stack Overflow
See other posts from Stack Overflow
or by Stardust
Published on 2010-04-10T19:57:32Z
Indexed on
2010/04/10
20:13 UTC
Read the original article
Hit count: 366
I'm trying to pass value by using EL expression in get request parameter, but I'm getting empty value of request parameter whenever I click on that URL. Could anyone please tell me the correct syntax?
<c:forEach var="message" items="${requestScope.inboxmessage}" varStatus="messageCount" >
<a href="just.do?value="+${messageCount.count} >
</c:forEach>
© Stack Overflow or respective owner