forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathManage.jsp
More file actions
107 lines (107 loc) · 4.14 KB
/
Manage.jsp
File metadata and controls
107 lines (107 loc) · 4.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<%@ page contentType="text/html; charset=gb2312" import="java.sql.*"%>
<%@ page import="java.io.*" %>
<html>
<head>
<title>华奥汽车销售集团网站</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<jsp:useBean id="data" scope="session" class="cars.Bean1" />
<jsp:useBean id="bottom" scope="session" class="cars.Bean3" />
<jsp:useBean id="rst" scope="session" class="cars.Pages" />
<%!
String sql;
String vari;
int i;
int pagecount;
int pages;
int nows;
ResultSet rs;
%>
<link rel="stylesheet" href="Css/style.css">
<SCRIPT src="Js/TextColor.js"></SCRIPT>
<body bgcolor="#ffffff" topmargin="0" leftmargin="0">
<table width="744" height="60" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="f9f9f9">
<tr>
<td><div align="center"><img src="Image/Fla.jpg" width="740" height="200"> </div></td>
</tr>
</table>
<table width="744" height="526" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#f9f9f9">
<tr>
<td width="164" height="526" valign="top"><%@ include file="Manage_Left.jsp" %> </td>
<td width="580" valign="top"><table width="580" height="564" border="1" cellpadding="0" cellspacing="0">
<tr bgcolor="#FFCC99">
<td height="20" colspan="2"> 管理中心</td>
</tr>
<tr>
<td height="544" colspan="2" valign="middle"><div align="center">
<table width="492" height="490" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="50" colspan="2"><div align="center">集 团 信 息 管 理</div></td>
</tr>
<form name="form3" method="post" action="About_Update.jsp?action=future">
<tr>
<td width="463" height="20" valign="bottom" bgcolor="#efefef" class="bottm"> 未来展望</td>
<td width="59" height="20" valign="bottom" bgcolor="#efefef" class="bottm">
<div align="right">
<input name="Submit" type="submit" class="buttons" value="更新">
</div></td>
</tr>
<tr>
<td height="200" colspan="2" valign="middle">
<%
sql="select * from tb_News where Title='未来展望'";
rs=data.getrs(sql);
rs.beforeFirst();
if(rs.next()){
%>
<textarea name="content" cols="80" rows="13" class="wenbenkuang" id="content"><%=rs.getString("Content")%></textarea>
<%}
data.close();
%>
</td>
</tr>
</form>
<form name="form4" method="post" action="About_Update.jsp?action=history">
<tr>
<td height="20" valign="bottom" bgcolor="#efefef" class="bottm"> 历史回顾</td>
<td valign="bottom" bgcolor="#efefef" class="bottm">
<div align="right">
<input name="Submit2" type="submit" class="buttons" value="更新">
</div></td>
</tr>
<tr>
<td height="200" colspan="2" valign="middle">
<%
sql="select * from tb_News where Title='历史回顾'";
rs=data.getrs(sql);
rs.beforeFirst();
if(rs.next()){
%>
<textarea name="content" cols="80" rows="13" class="wenbenkuang" id="content"><%=rs.getString("Content")%></textarea>
<%}
data.close();%>
</td>
</tr>
</form>
</table>
</div></td>
</tr>
</table></td>
</tr>
</table>
<table width="744" height="60" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center">汽车厂商标志</div></td>
</tr>
</table>
<table width="744" height="60" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center">
<p><%=bottom.seturl("吉林省长春市明日科技有限公司","www.mingrisoft.com")%> <a style="color:#000000;" href="Exit.jsp">管理出口</a><%=bottom.setnumbers("0431-4972266")%><br>
Copyright © 2005-2008</p>
</div></td>
</tr>
</table>
</body>
</html>