mainlabel.jsp
1.27 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
<%@ page import="weaver.systeminfo.*,weaver.general.Util,java.util.*" %>
<%@ page language="java" contentType="text/html; charset=UTF-8" %> <%@ include file="/systeminfo/init_wev8.jsp" %>
<jsp:useBean id="RecordSet" class="weaver.conn.RecordSet" scope="page"/>
<%
RecordSet.executeProc("Sys_Slogan_Select","");
RecordSet.next();
%>
<html>
<head>
<title></title>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<base target="MainWindow">
<LINK rel="stylesheet" type="text/css" href="/css/Weaver_wev8.css">
</head>
<body bgcolor="buttonface" CLASS="mybody" SCROLL="no" >
<table width="100%" border="0" cellpadding="0" height=10 cellspacing="0">
<tr>
<td background="/images/hr_wev8.gif"></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" align="center" cellspacing="0">
<tr>
<td><FONT style="COLOR: #<%=RecordSet.getString(3)%>; FONT-FAMILY: verdana;FONT-WEIGHT: bold">
<MARQUEE scrollAmount=<%=RecordSet.getString(2)%> scrollDelay=1><%=Util.toScreen(RecordSet.getString(1),user.getLanguage())%></MARQUEE></font>
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" height=10 cellspacing="0">
<tr>
<td background="/images/hr_wev8.gif"></td>
</tr>
</table>
</body>
</html>