index.jsp
1.36 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
<%@ page language="java" contentType="text/html; charset=UTF-8" %> <%@ page import="weaver.general.Util" %>
<%@ page import="java.util.*" %>
<%@ page import="weaver.systeminfo.*" %>
<jsp:useBean id="CompanyComInfo" class="weaver.hrm.company.CompanyComInfo" scope="page" />
<html>
<head>
<title><%=SystemEnv.getHtmlLabelName(16641, 7)%></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<%
String id = Util.null2String(request.getParameter("id"));
String checkOutMessage=Util.null2String(request.getParameter("checkOutMessage")); //已被检出提示信息
if(!checkOutMessage.equals("")){
%>
<SCRIPT LANGUAGE="JavaScript">
alert("<%=checkOutMessage%>");
</SCRIPT>
<%
}
String mainFrameSrc="";
if("".equals(id)){
mainFrameSrc="WebDsp.jsp";
}else{
mainFrameSrc="WebDsp.jsp?isrequest=Y&id="+id;
}
%>
<frameset rows="50,*" cols="*" frameborder="yes" border="1" framespacing="0" id=Main>
<frame name="topFrame" scrolling="NO" noresize src="top.jsp" target="mainFrame_sub">
<frameset cols="146,*" frameborder="no" border="1" framespacing="0" id=MainBottom>
<frame name="leftFrame" noresize scrolling="NO" src="WebList.jsp" target="mainFrame_sub">
<frame name="mainFrame_sub" noresize src="<%=mainFrameSrc %>" id="mainFrame_sub">
</frameset>
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</noframes>
</html>