Hi, I have 2 pages p0.jsp and p1.jsp ==> f0.jsp <== <h1>F0 ...</h1> <% System.out.println("**** IN F0 ****"); // goes to catalina.out %> <jsp:forward page="f1.jsp" />
==> f1.jsp <== <H1>F1 ... </H1> <? System.out.println("**** IN F1 ****"); // ??? not printed ?> only the access to f0.jsp is logged in access_log, and only the f0 println is printed in catalina.out. Is this behaviour a bug or per design? Is there a way to have println to work in f1.jsp? Thanks, --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]