We are writing what it actually .I mean it is Error object or else other

Showing Answers 1 - 6 of 6 Answers

suganthi

  • Sep 13th, 2005
 

isErrorPage is a attribute of page directives and which is used to check whether particular jsp program having error or not.

  Was this answer useful?  Yes

shanthini

  • Nov 3rd, 2005
 

Actully this is an attribute of this page, and this particular page will be displayed when the other page( say page 2) got some error, provided, where the errorpage attribute  has to de set to this page. put it in a nut shell, this shows that is going to act as an error indication to some other page

  Was this answer useful?  Yes

Sarje

  • Aug 27th, 2009
 

If in MyErrorPage.jsp

<%@ page isErroPage="true" %>

is written it doesn't mean this is an Error Object.
If this page is included as error page in any other jsp (suppose MyPage.jsp) using

<% @ page errorPage="MyErrorpage.jsp" %>

then if any Exception is occured in MyPage.jsp then equivelent Exception Object will be created and request will be forwarded to the MyErrorPage.jsp this will generate response so here you can handle the Exception.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions