>Also on a related note, does forwarding a request to a JSP make the
servlet
>return from it's service method or does it continue until it's
finished?
No, <jsp:forward> will flush the output buffer, forward the request to
another servlet/JSP page, and essentially behave like a goto.  What you
want is <jsp:include>, which behaves like a function call and returns as
expected.

Michael Hu, Paradox Team, Corel Corporation

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".
For JSP FAQ, http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to