You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.4 KiB
95 lines
2.4 KiB
<%@ page language="java" pageEncoding="utf-8" %>
|
|
<%@page import="java.util.List"%>
|
|
<jsp:useBean id="getPara" scope="application" class="com.zky.para.SyncPara"/>
|
|
|
|
|
|
<style>
|
|
body {background-attachment: fixed;background-image:url(/images/ditu.gif);)
|
|
</style>
|
|
<link href="../css/font.css" rel="stylesheet" type="text/css">
|
|
<style type="text/css">
|
|
<!--
|
|
body {
|
|
margin-left: 0px;
|
|
margin-top: 0px;
|
|
margin-right: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
.tbHead { background-color: #98C5EC;
|
|
font-size: 12px;
|
|
color: #333333;
|
|
padding: 3px;
|
|
text-align: center;
|
|
}
|
|
.tbHead2 { background-color: #F6FBFF;
|
|
font-size: 12px;
|
|
color: #333333;
|
|
padding: 1px;
|
|
text-align: center;
|
|
}
|
|
.tbListWhite { background-color: #FFFFFF;
|
|
font-size: 12px;
|
|
color: #333333;
|
|
padding: 1px;
|
|
}
|
|
.style1 {color: #333333; font-weight: bold;}
|
|
-->
|
|
</style>
|
|
<html>
|
|
<title>辅助业务管理系统</title>
|
|
|
|
<body>
|
|
<br>
|
|
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="box">
|
|
<tr>
|
|
<td valign="top"><table width="100%" height="23" border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td width="25%" background="/images/tab_search_01.jpg"><table width="80%" height="23" border="0" align="center" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td width="3%"><img src="/images/little_red.jpg" width="12" height="12"></td>
|
|
<td width="97%" class="font12b"> 信息提示</td>
|
|
</tr>
|
|
</table></td>
|
|
<td width="82%" background="/images/tab_search_03.jpg"><img src="/images/tab_search_02.jpg" width="12" height="23"></td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
<form name="form1" method="post">
|
|
<br>
|
|
<table width="90%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="d8e9fe" class="table02">
|
|
<tr bgcolor="#FFFFFF">
|
|
<td align="center">
|
|
<br><br>
|
|
<%
|
|
//由top.jsp或者top800.jsp从com.zky.manager.PopupMsg类获取
|
|
List list = (List)session.getAttribute("PopupMsg");
|
|
session.removeAttribute("PopupMsg");
|
|
for(int i= 0 ; i < list.size() ; i++){
|
|
out.println((String)list.get(i));
|
|
}
|
|
%>
|
|
<br><br>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table width="90%" align="center">
|
|
<tr align="center">
|
|
<td>
|
|
<input class="box_button" type="button" name="Submit" size='4' value = " 关闭 " onclick="window.close();">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
</form>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|