Maison > Article > base de données > JBuilder2005实战JSP之错误处理(4)_MySQL
JBuilder
错误处理页面error.jsp
Web应用程序一般都有一个或多个统一的错误处理JSP页面,以便在功能性的JSP页面发生错误时,能以一种友好的形式向用户反馈。友好而统一的错误页面是Web展现层一个无可忽略的方面。
下面,我们创建错误处理error.jsp文件,其代码如下所示:
代码清单 11 error.jsp错误处理JSP页面
1. <%@page contentType="text/html; charset=GBK" isErrorPage="true" %> 2. <html> 3. <head> 4. <title>error</title> 5. </head> 6. <body bgcolor="#ffffff"> 7. 抱歉,系统发生异常,点击<a href="login.jsp">这儿</a>返回首页 8. </body> 9. </html> |
1. <%@page contentType="text/html; charset=GBK" errorPage="error.jsp"%> 2. <%@page import="bookstore.*"%> 3. <%@page import="java.sql.*"%> 4. … |
1. <%@page contentType="text/html; charset=GBK" errorPage="error.jsp"%> 2. <%@page errorPage="error_error.jsp"%> 3. … |
图 15 友好的错误处理页面 |
1. <%@ page contentType="text/html; charset=GBK" errorPage="error.jsp" %> 2. <html> 3. <head> 4. <title> 5. fail 6. </title> 7. </head> 8. <body bgcolor="#ffffff"> 9. 你输入的密码不正确,点击<a href="login.jsp">这儿</a>返回登录页面。 10. </body> 11. </html> |
图 16 fail.jsp页面效果 |