"P'Simer, Dana" wrote:

> Does content that has already been written to the out stream affect
> forwards?  For example the following JSP:
>

As long as the response has not been "committed" yet (in other words, you have
not written more bytes than the size of the page buffer you have declared),
you will have no problems -- any bytes the original page sent will be erased
when the buffer is cleared, and the entire page will be created by the page
you forward to.

If you have already committed this response (because the buffer size was
exceeded), the forward will fail with an error instead.

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to