123456789101112131415161718192021222324252627282930313233343536 |
- <%@ 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>错误403</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: 200px 0px 0px 0px">
- <div align="center">
- <img align="absmiddle"
- src="<%=request.getContextPath()%>/resource/images/logo_gray1.gif"
- 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>
|