Message.jsp
1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<%@ page import="weaver.general.Util"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ include file="/systeminfo/init_wev8.jsp"%>
<%
int type = Util.getIntValue(request.getParameter("type"),0);
String message = "";
if(type==0){
message = "您暂时无权限查看此页面!";
}else if(type==1){
message = "您暂时无权限查看此信息!";
}else if(type==2){
message = "暂未开启任何考核周期!<a href='/performance/base/BaseMain.jsp' target='_blank'>设置</a>";
}else if(type==3){
message = "保存数据出错,请联系系统管理员!";
}
%>
<HTML>
<HEAD>
<title>提示</title>
<LINK rel="stylesheet" type="text/css" href="/css/Weaver_wev8.css">
</HEAD>
<BODY>
<table width=100% height=100% border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col width="10">
<col width="">
<col width="10">
</colgroup>
<tr>
<td height="10" colspan="3"></td>
</tr>
<tr>
<td></td>
<td valign="top">
<TABLE class=Shadow>
<tr>
<td valign="top">
<TABLE class=ViewForm>
<TR>
<TD valign=top>
<TABLE>
<TR class=Section>
<TH style="font-size: 13px;">
提示:<font style="color:red"><%=message %></font>
</TH>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</td>
</tr>
</TABLE>
</td>
<td></td>
</tr>
<tr>
<td height="10" colspan="3"></td>
</tr>
</table>
</BODY>
</HTML>