I've got 2 JSPs. JSP1 calls JSP2 to format a table in JSP1
JSP1 calls JSP2 using this code:
<jsp:include page='<%=(String)request.getAttribute("SB_Format_Path")%>' flush="true" ></jsp:include>
The problem is that JSP2 has access to variable XX, at runtime but JSP1 does not have access to it. I'd like to somehow be able to access variable XX from JSP1, but I've researched and haven't found a solution to my partiucal problem.
Thanks.