I have a JSP file and in that file I am including another JSP file:
<c:forEach var="instanceVar" items="${instanceList}">
<c:set var="instance"><jsp:include page="instance.jsp"/></c:set>
...
</c:forEach
In the file instance.jsp I want to use a variable instanceVar
. I want to do it using JSTL. Is there any way to do this?