404.jsp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <%@page import="com.hotent.core.web.util.RequestUtil" isErrorPage="true" pageEncoding="UTF-8"%>
  2. <%
  3. String basePath=request.getContextPath();
  4. %>
  5. <%@include file="/commons/include/get.jsp"%>
  6. <html>
  7. <head>
  8. <title>您访问的页面不存在</title>
  9. <style type="text/css">
  10. <!--
  11. .STYLE10 {
  12. font-family: "黑体";
  13. font-size: 36px;
  14. }
  15. -->
  16. .link {
  17. border: 1px solid #999999;
  18. border-radius: 3px 3px 3px 3px;
  19. cursor: pointer;
  20. line-height: 23px;
  21. padding: 1px 7px 7px 8px;
  22. text-align: center;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <table border="0" align="center" cellpadding="0" cellspacing="0">
  28. <tr>
  29. <td><img src="<%=basePath%>/styles/default/images/error/error_top.jpg" /></td>
  30. </tr>
  31. <tr>
  32. <td height="170" align="center" valign="top" background="<%=basePath%>/styles/default/images/error/error_bg.jpg">
  33. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  34. <tr>
  35. <td width="100%" valign="top" align="center">
  36. <table width="100%" align="center">
  37. <tr height="25" align="center">
  38. <td >
  39. <img src="<%=basePath%>/styles/default/images/error/error.jpg" style="margin-top:20px;"></td>
  40. </td>
  41. </tr>
  42. <tr height="40" align="center">
  43. <td>
  44. 对不起,您访问的页面不存在!
  45. </td>
  46. </tr>
  47. <tr height="25" align="center">
  48. <td>
  49. <div style="margin:0 100px 0 100px;">
  50. <a class="link reloaded" href="javascript:;" onclick="javascript:location.href='<%=basePath%>/logout';"><span></span>重 新 登 录</a>
  51. <a class="link backed" href="javascript:history.back();" style="margin-left:30px;"><span></span>后 退</a>
  52. </div>
  53. </td>
  54. </tr>
  55. </table>
  56. </td>
  57. </table>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td><img src="<%=basePath%>/styles/default/images/error/error_bootom.jpg" /></td>
  62. </tr>
  63. </table>
  64. </body>
  65. </html>