J
Jurgen
Hi all,
I have encountered a problem using the jsp:include tag. The
jsp:include calls a servlet which at this stage just returns some
text.
The jsp page...
....
<td>
<jsp:include page="/testServlet" flush="true" />
</td>
....
The output part of the servlet...
....
PrintWriter out = res.getWriter();
res.setContentType("text/html");
out.print("Hello!");
out.flush();
out.close();
....
The page shows the text but there is no further html returned after
this point.
Any ideas??
Many thanks
Jurgen
I have encountered a problem using the jsp:include tag. The
jsp:include calls a servlet which at this stage just returns some
text.
The jsp page...
....
<td>
<jsp:include page="/testServlet" flush="true" />
</td>
....
The output part of the servlet...
....
PrintWriter out = res.getWriter();
res.setContentType("text/html");
out.print("Hello!");
out.flush();
out.close();
....
The page shows the text but there is no further html returned after
this point.
Any ideas??
Many thanks
Jurgen