I need to do for each loop and include loops content to other jsp page. Now I need to pass looped variable to other JSP page. I have tried following, but it didn't work. When I used attribute in included page, it just returned null value.
<c:forEach var="item" items="${items}" varStatus="loop">
<jsp:include page="/my_jsp_page.jsp" flush="true">
<jsp:param name="item" value="${item}" />
</jsp:include>
</c:forEach>