| Author |
Mixing JSTL and JSP?
|
Gary Seibold
Greenhorn
Joined: Oct 08, 2004
Posts: 7
|
|
Can I mix JSP code in with my JSTL? Can I access variables from the JSTL? I would like to do something like.... <c:forEach var="theList" items="${sessionScope.results}"> <c:set var="previousList" value="${theList[0]}"/> <% String reply = javaFunction(previousList);//<<< from JSTL? or ${previousList} %> <c ut value="${theList[0]}"/> </c:forEach> Is there another way to do this (other than all JSP)?
|
 |
Jeroen Wenting
Ranch Hand
Joined: Oct 12, 2000
Posts: 5093
|
|
|
yes, no, yes (in fact the way you display doesn't work).
|
42
|
 |
 |
|
|
subject: Mixing JSTL and JSP?
|
|
|