PC6下载站

分类分类

JSP中errorPage设置方法

关注+2009-11-10作者:

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>

-

 

展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消