Hi all.
I'm working on a JSP page that will display a hierarchy of nodes. One node can
have a "print" atribute, which should cause the subnodes to be "printed" on the
same page. This I plan to acomplish with <jsp:include ...>
So something like:
<%
if( print ) {
...
while( subNodesRS.next() ) {
%>
...
<jsp:include page="<%= \"displayNodes.jsp?partial=true&id=\" + nodeID %>" />
...
<%
}
}
%>
This is a simplified version, but you get the point. The problem is, the first
sub-node gets included, but all others are missing and so is the rest of the
HTML code.
Could itbe that JSP page is calling "response.close()"?
Nix.
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>