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