I want to use the actual item from my c:forEach in a <% JavaCode/JSPCode %>.
How do I access to this item?
<c:forEach var="item" items="${list}">
<% MyProduct p = (MyProduct) ${item}; %> <--- ???
</c:forEach>
|
|
|
Don't use scriptlets (ie. the stuff in between the
|
|||
|
|
|
Anything that goes inside You can do it like this:
However, this is a horrible way to write JSPs. Why do you want to use scriptlets, when you're already using JSTL/EL? Obviously you're putting something inside that |
|||
|
|
|
This surely help me alot! :) I also (so far) had to mix scriplet and JSTL. Here is my case :
The following code :
is your advice! Thanks! |
|||
|
|