error.jsp 822 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <%@ page contentType="text/html;charset=UTF-8" isErrorPage="true" %>
  2. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <html>
  4. <head>
  5. <title>系统出错了</title>
  6. <%@include file="/commons/include/get.jsp" %>
  7. </head>
  8. <body>
  9. <table border="0" cellspacing="0" cellpadding="0" class="listHeader" style="width:600px;margin-top: 50px" align="center">
  10. <tr>
  11. <td class="title">程序出错了</td>
  12. <td>
  13. </td>
  14. </tr>
  15. </table>
  16. <table border="0" cellspacing="0" cellpadding="0" class="listTable" style="width:600px;height: 150px" align="center">
  17. <tr>
  18. <td>
  19. <table width="100%" height="100%">
  20. <tr>
  21. <td width="100px"><img alt="" src="${ctx }/commons/image/error.gif"></td>
  22. <td>
  23. <%=exception.getMessage() %></td>
  24. </tr>
  25. </table>
  26. </td>
  27. </tr>
  28. </table>
  29. </body>
  30. </html>