| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <HEAD xmlns="http://www.w3.org/1999/xhtml">
- <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <TITLE> 页面没有找到 </TITLE>
- <%
- String ctx = request.getContextPath();
- %>
- </HEAD>
- <BODY >
- <script type="text/javascript">
- function isIFrameSelf(){try{if(window.top ==window){return false;}else{return true;}}catch(e){return true;}}
- <%-- function toHome(){ if(!isIFrameSelf()){ window.location.href="<%=ctx%>/";}} --%>
- //window.setTimeout("toHome()",5000);
- </script>
- <style>
- body{
- background-color: #EEF1F7;
- }
- a {
- text-decoration: none;
- }
- a:hover {
- font-weight: bold;
- }
- .div-error {
- background-color: #EEF1F7;
- width:409px; margin:100px auto; padding-right:150px;
- }
- img {
- border: 0px;
- width: 409px;
- }
- </style>
- <div class="div-error" >
- <div>
- <p>
- <a>
- <img src="<%=ctx %>/themes/default/images/error404.png"/>
- </a>
- </p>
- </div>
- </div>
- </body>
- </html>
|