404.jsp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <title>错误404</title>
  7. <style type="text/css">
  8. a:link,a:active,a:visited {
  9. color: blue, text-decoration : underline
  10. }
  11. a:hover {
  12. color: red;
  13. text-decoration: none
  14. }
  15. </style>
  16. </head>
  17. <body style="margin: 50px 0px 0px 0px">
  18. <div align="center">
  19. <img align="absmiddle"
  20. src="<%=request.getContextPath()%>/resource/images/logo_gray.jpg"
  21. border="0" />
  22. </div>
  23. <div align="center" style="font-weight: bold; color: red; padding: 40px">
  24. 提示您:您要访问的页面不存在。请确认您输入的网页地址是否正确!
  25. </div>
  26. <div align="center" style="font-size: 10pt">
  27. 您可以选择转到:
  28. <a target="_top" href="<%=request.getContextPath().length() == 0 ? "/" : request.getContextPath()%>">首页</a>&nbsp;&nbsp;&nbsp;
  29. <a href="javascript:history.back()">返回</a>
  30. </div>
  31. </body>
  32. </html>