Sometimes when a JSP page errors out it doesn’t redirect to the
specified error page but displays the error page inline. In that case
the page buffer has most likely been filled and because data has
already been sent to the browser and the server cannot send a redirect
command.
In these cases increase your JSP page buffer size with the page directive‘s buffer attribute. The default is 8kb. Increase it to something that your page will most likely not fill.
<%@ page buffer="50kb" %>
Popularity: unranked [?]
- BROWSE / IN TIMELINE
- « Ajax
- » Check in the Source, Not the Output
- BROWSE / IN General
- « Ajax
- » Check in the Source, Not the Output
- RELATED / YOU MIGHT FIND THESE INTERESTING Error Pages Phone HomeRemove JSP WhitespaceNull is Not an Exception
SPEAK / ADD YOUR COMMENT
Comments are moderated.

