📄 info.jsp
字号:
<%@ page language="java" contentType="text/html;charset=GBK" %>
<%@ page import = "java.util.*"%>
<%
String pageType = request.getParameter("pageType");
String message = request.getParameter("message").trim();
String buttonType = request.getParameter("buttonType");
if(message==null) message="";
if(message.equals("noRecord")){
message="对不起,没有符合条件的记录!";
}else if(message.equals("newSuccess")){
message="新建成功!";
}else if(message.equals("newFail")){
message="新建失败!";
}else if(message.equals("updateSuccess")){
message="更新成功!";
}else if(message.equals("updateFail")){
message="更新失败!";
}else if(message.equals("newProductSuccess")){
message="新建产品成功!";
}else if(message.equals("newProductFail")){
message="新建产品失败!";
}else if(message.equals("updateProductSuccess")){
message="更新产品成功!";
}else if(message.equals("updateProductFail")){
message="更新产品失败!";
}else if(message.equals("EmailChangeSuccess")){
message="邮箱修改成功!";
}else if(message.equals("EmailChangeFail")){
message="邮箱修改失败!";
}
if(pageType==null) pageType="info";
if(buttonType==null) buttonType="";
%>
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="javascript">
function backmain(){
window.top.location.href="/ms_mis/index.jsp";
}
function backAndClear(){
location.href="/NCL/mis/manager/itemDefine/create/frmCreate.jsp";
}
</script>
<style>
table{
font-size:9pt;
}
</style>
<TITLE>信息</TITLE>
</HEAD>
<BODY bgcolor="#F0F0F0">
<table width=100% height=100%>
<tr>
<td align=center valign=middle>
<table cellpadding=0 cellspacing=0 border=0 width="70%" height="70%" border=0>
<tr>
<td align="left" valign="top" height=40 width=5><img src="/NCL/mis/global/images/ui/AU_bg_LeftTop.gif"></td>
<td align="left" valign="top" height=40 width=27><img src="/NCL/mis/global/images/ui/AU_ShieldYellow.gif"></td>
<td align="left" valign="middle" height=40 width="100%" style="color:white;font-weight:bold;padding-left:10px;background-image:url(/NCL/mis/global/images/ui/AU_bg_TopMiddle.gif);background-repeat:repeat-x">
系统信息</td>
<td align="left" valign="top" height=40 width=5><img src="/NCL/mis/global/images/ui/AU_bg_RightTop.gif"></td>
</tr>
<tr>
<td align="left" valign="top" style="background-image:url(/NCL/mis/global/images/ui/AU_bg_LeftMiddle.gif);background-repeat:repeat-y;"></td>
<td align="left" valign="middle" colspan=2 bgcolor="WHITE">
<table border=0 cellpadding=20>
<tr>
<td width=40 align=center><img src="/NCL/mis/global/images/ui/<%=pageType%>.gif"></td>
<td><%=message%></td><td></td>
</tr>
<tr>
<td></td><td></td><td align=right>
<%
StringTokenizer st = new StringTokenizer(buttonType,",");
while (st.hasMoreTokens()){
buttonType = st.nextToken();
if(buttonType.trim().equals("back")){
%>
<input type="button" value="返回" onclick="window.history.back();">
<%}if(buttonType.trim().equals("backmain")){%>
<input type="button" value="返回首页" onclick="javascript:backmain();">
<%}if(buttonType.trim().equals("close")){%>
<input type="button" value="关闭" onclick="window.top.close();">
<%}if(buttonType.trim().equals("clear")){%>
<input type="button" value="返回" onclick="javascipt:backAndClear();">
<%
}
}
%>
</td>
</tr>
</table>
</td>
<td align="left" valign="top" width=5 style="background-image:url(/NCL/mis/global/images/ui/AU_bg_RightMiddle.gif);background-repeat:repeat-y;"></td>
</tr>
<tr>
<td align="left" valign="top" width=5><img src="/NCL/mis/global/images/ui/AU_bg_LeftBottom.gif"></td>
<td align="left" valign="top" width=27 colspan=2 style="background-image:url(/NCL/mis/global/images/ui/AU_bg_BottomMiddle.gif);background-repeat:repeat-x;"></td>
<td align="left" valign="top" width=5><img src="/NCL/mis/global/images/ui/AU_bg_RightBottom.gif"></td>
</tr>
</table>
</td>
</tr>
</table>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -