📄 operfailure.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%request.setCharacterEncoding("GBK");%>
<%
String error=request.getParameter("error");
%>
<html>
<head>
<title>操作失败</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="../../common/style/main.css" rel="stylesheet" type="text/css" />
<script language="JavaScript" src="../../common/script/ChangeStyle.js"></script>
<script language="JavaScript">
function fn_onclick() {
var pElt = window.opener;
var id = "<%= (request.getParameter("id")==null)?"":request.getParameter("id")%>";
if ( pElt.menuReload != undefined && id.length > 0 ) {
var ret = pElt.menuReload(id);
}
window.opener.location.reload();
self.close();
}
function fn_onload() {
var input = document.getElementById("return");
if ( history.length > 1 )
input.onclick = new Function("history.go(-2);");
else
input.onclick = new Function("history.back();");
}
</script>
</head>
<body onload="fn_onload();">
<table width="100%" border="0" cellpadding="2" cellspacing="1" class="OuterTable">
<tr>
<td class="OuterHead" colspan="8">
<table width="100%" border="0" cellspacing="0" cellpadding="1">
<tr>
<td nowrap="nowrap" style="text-align:left">
<span id="ItemTitle"><font face="webdings">8</font>提示信息</span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="InnerMain" colspan="8">
<table width="100%" border="0" cellspacing="0" cellpadding="1">
<tr>
<td nowrap="nowrap" style="text-align:left">
您的当前的操作失败,可能没有正确提交信息。
<%if(error!=null) out.print("<br>原因:"+error);%>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="OuterFoot" colspan="8" align="right" nowrap>
<input id="return" type="button" class="button" value="返回" style="width:40; <%= (request.getParameter("r")!=null)?"":"display:none;"%>" onclick="history.go(-2)">
<input type="button" class="button" value="关闭" style="width:40" onclick="self.close()">
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -