1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <%@ page contentType="text/html;charset=UTF-8" isErrorPage="true" %>
- <%
- String basePath=request.getContextPath();
- %>
- <html>
- <head>
- <%@include file="/commons/include/get.jsp" %>
- <title>页面出错了</title>
- <style type="text/css">
- .STYLE10 {font-family: "黑体";font-size: 20px;}
- </style>
- <script type="text/javascript">
- function showErrorMsg(){
- var url="<%=basePath%>/platform/system/sysErrorLog/geterror.ht";
- var param={id:${errorCode}};
- $.post(url,param,function(data){
- var obj = $.parseJSON(data);
- $.ligerDialog.err("错误信息","错误码:"+${errorCode},obj.error);
- });
- }
- </script>
- </head>
- <body>
-
- <table border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td><img src="${ctx}/styles/default/images/error/error_top.jpg" /></td>
- </tr>
- <tr>
- <td height="200" align="center" valign="top" background="${ctx}/styles/default/images/error/error_bg.jpg">
- <table width="80%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="66%" valign="top" align="center">
- <table width="100%">
- <tr height="25">
- <td>
- <span class="STYLE10">出错了,请联系管理员!</span>
- </td>
- </tr>
- <tr height="70">
- <td>
- 错误码:<a class="link" href="javascript:;" onclick="showErrorMsg()" >${errorCode}</a>
- </td>
- </tr>
- </table>
-
- </td>
- </table>
- </td>
- </tr>
- <tr>
- <td><img src="${ctx}/styles/default/images/error/error_bootom.jpg" /></td>
- </tr>
- </table>
- </body>
- </html>
|