Hi all, I have problem with error page in JSP. In each JSP I have directive <[EMAIL PROTECTED] errorPage="/spec/error.jsp" %>. In error.jsp I have <[EMAIL PROTECTED] isErrorPage="true" %>. It is OK, I think. Problem is when error occures in JSP (jsp1), e.g. when is resource bundle missing. Jsp1 is rendered until error occurs and then is flow forwarded to error.jsp. Final result is, that source of final page contains half of origin page and then complete error page, e.g.: <table cellpadding="0" cellspacing="0" id="tranTable"> <tr> <t
><html> <----- this is start of error page <head> <title>Application error</title> How can I obtain only error.jsp into response? Current state is not required becouse of graphical layout. Thanx miro