| 12345678910111213141516171819202122232425262728293031323334 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href="<%=basePath%>">
-
- <title>404</title>
-
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <meta http-equiv="X-UA-Compatible" content="IE=9"/>
- <meta http-equiv="X-UA-Compatible" content="IE=10"/>
- <!--
- <link rel="stylesheet" type="text/css" href="styles.css">
- -->
- <link rel="stylesheet" type="text/css" href="css/common/hzbstyle.css">
- </head>
-
- <body>
- <center>
- <div style="width: 100%;height: 20%;"></div>
- <img alt="404" title="404异常" src="images/common/404.jpg" style="width: 200px;"><br/><br/>
- <font style="font-size: 16px;color: #f08300;" class="hzbspan">请重新<a href="<%=basePath%>jsp/login/loginre.jsp">登陆</a>!!!</font>
- </center>
- </body>
- </html>
|