How can you store JSP buffered output from an include/import to a variable?
- by codeninja
I don't want to use any JAVA, I just want to use <jsp:include> or <c:import> or something to that effect..
so that I can use
<c:set var="myPage" value="bufferedPageOutput" />
to output the generated html later
How can I do this with JSP/JSTL/Struts ?