123456789101112131415161718192021222324252627282930313233343536373839 |
- <%@ page contentType="text/html;charset=UTF-8" isErrorPage="true" %>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <html>
- <head>
- <title>系统出错了</title>
- <%@include file="/commons/include/get.jsp" %>
-
- </head>
- <body>
- <table border="0" cellspacing="0" cellpadding="0" class="listHeader" style="width:600px;margin-top: 50px" align="center">
- <tr>
- <td class="title">程序出错了</td>
- <td>
-
- </td>
- </tr>
- </table>
- <table border="0" cellspacing="0" cellpadding="0" class="listTable" style="width:600px;height: 150px" align="center">
- <tr>
- <td>
- <table width="100%" height="100%">
- <tr>
- <td width="100px"><img alt="" src="${ctx }/commons/image/error.gif"></td>
- <td>
- <%=exception.getMessage() %></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|