How can you store JSP buffered output from an include/import to a variable?
Posted
by codeninja
on Stack Overflow
See other posts from Stack Overflow
or by codeninja
Published on 2010-04-01T21:12:05Z
Indexed on
2010/04/01
21:23 UTC
Read the original article
Hit count: 154
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 ?
© Stack Overflow or respective owner