New Technologies

  • Java
  • Javascript
  • DTML
  • Dot Net
  • ASP .Net
  • C# .Net
  • PHP
Your Ad Here
Showing posts with label Error page in java. Show all posts
Showing posts with label Error page in java. Show all posts

Sunday, June 29, 2008

To configure the default error page in a webproject in java

first open web.xml

and insert the following example code

<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>

and then create the error information page that is error.jsp.

Your Ad Here