I am importing three diff jsp files through foreach looping inside the parent jsp file. Three files are x.jsp, y.jsp, z.jsp for example.
I want to extract the last file z.jsp from this loop and I need to put in to one seperate DIV element. How can I do this ?? can anyone help me out for this .....
I have given the snippet as below:
<c:forEach var="section" items="${sessionScope.current.cell.orderedSections}">
<c:if test="${section.displayed.booleanValue}"><c:import url="/${section.name}.do"/></c:if>
</c:forEach>
Thanks,
jc