-
Notifications
You must be signed in to change notification settings - Fork 433
/
Copy pathmain.jsp
42 lines (40 loc) · 1.45 KB
/
main.jsp
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
<%@ page contentType="text/html; charset=gb2312" language="java" %>
<%@ page import="com.dao.GoodsDAO" %>
<%@ page import="java.util.List" %>
<%
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>物资管理系统</title>
<link rel="stylesheet" href="Css/style.css">
</head>
<body>
<table width="757" height="174" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="133" align="center" valign="top"><%@ include file="top.jsp"%></td>
</tr>
<tr>
<td>
<table width="100%" height="26" border="0" cellpadding="0" cellspacing="0" background="images/area_bg.jpg">
<tr>
<td width="26%" align="center" class='word_white'>当前登录用户:<%=session.getAttribute("username")%></td>
<td width="4%"> </td>
<td width="70%" valign="bottom">当前位置:物资管理系统首页 >>></td>
</tr>
</table>
<table width="100%" height="385" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td width="5" valign="top" background="images/left.gif"> </td>
<td valign="top" background="images/main.jpg"> </td>
<td width="10" valign="top" background="images/right.jpg"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="55" valign="top" background="images/bottom.jpg"><%@ include file="copyright.jsp"%></td>
</tr>
</table>
</body>
</html>