1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <%@ page language="java" contentType="text/html;charset=UTF-8" isELIgnored="false" isErrorPage="true"%>
- <%@ taglib uri="/struts-tags" prefix="s"%>
- <%--<%
- //set html status 200
- response.setStatus(200);
- %>--%>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>404</title>
- <base href="${pageContext.request.scheme}://${header['host']}${pageContext.request.contextPath}/">
- </head>
- <link href="css/errorPage/css/css.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript"
- src="${pageContext.request.contextPath}/script/common/jquery-1.5.1.min.js"></script>
- <script type="text/javascript">
- $(function(){
-
- $("#back").click(function(){window.history.go(-1);});
- $("#close").click(function(){window.close();});
- if(typeof window.dialogArguments=="undefined"){
- $("#back").css("display","block");
- $("#close").css("display","none");
- $("#relogin").click(function(){window.top.location.href="ediLogout.action";});
- }else{
- $("#back").css("display","none");
- $("#close").css("display","block");
- $("#relogin").click(function(){
- var _rv=new Object();
- _rv.errorFlag=true;
- window.returnValue=_rv;
- window.close();
- });
- }
-
- });
- </script>
- <body>
- <div id="">
- <br/>
- <br/>
- <br/>
- <br/>
- <br/>
- <table width="90%" border="0" align="center" cellpadding="0" cellspacing="0" class="table1">
- <tr>
- <td width="131" height="258" class="table1-td"><img src="css/errorPage/css/img/2.png" width="76" height="92" class="table1-pic"/></td>
- <td width="630" ><strong class="font1">对不起,你浏览的页面不存在或暂时不可用。请核查或者根据说明进行相应操作。</strong></td>
- </tr>
- <tr>
- <td colspan="2" class="font2">您可以尝试一下操作:</td>
- </tr>
- <tr>
- <td height="150" colspan="2"><table width="393" border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td width="105"><a href="#"><span class="img1" id="back"></span></a></td>
- <td width="36"> </td>
- <td width="105"><a href="#"><span class="img2" id="close"></span></a></td>
- <td width="41"> </td>
- <td width="106"><a href="#"><span class="img3" id="relogin"></span></a></td>
- </tr>
- </table></td>
- </tr>
- </table>
- </div>
-
- </body>
- </html>
|