WEB开发网
开发学院WEB开发Jsp JSP中errorPage设置方法 阅读

JSP中errorPage设置方法

 2009-10-25 16:35:05 来源:WEB开发网   
核心提示:1.设置errorPage:errorPage.jsp<%@page isErrorPage="true"%><html> <head> <meta http-equiv="Content-Type" content="te

1.设置errorPage:errorPage.jsp

<%@page isErrorPage="true"%>
<html>
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
     <title>JSP Page</title>
   </head>
   <body>
     Error~!
     <%=exception.getMessage()%>
   </body>
</html>

2.应用

<%@page info="Bad page"%>
<%@page errorPage="errorPage.jsp" %>  //出错后转到
<html>
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
     <title>JSP Page</title>
   </head>
   <body>
     <%
        boolean tf = true;
        if(tf){
           String info = getServletInfo();
           throw new Exception("Exception in:" + info);
        }
     %>
   </body>
</html>

Tags:JSP errorPage 设置

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接