forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainPage.jsp
More file actions
62 lines (29 loc) · 999 Bytes
/
mainPage.jsp
File metadata and controls
62 lines (29 loc) · 999 Bytes
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
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<link href="css/style.css" type="text/css" rel="stylesheet">
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>物流配货网——首页</title>
</head>
<body>
<jsp:include page="main_top.jsp"/>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="57"> </td>
<td width="637" valign="top" align="center">
<table width="615" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="25" valign="top">当前位置:首页 >> 物流配货流程</td>
</tr>
</table>
<img src="images/logistics_flow.jpg">
</td>
<td width="115" valign="top">
<jsp:include page="main_right.jsp"/>
</td>
</tr>
</table>
<jsp:include page="main_down.jsp"/>
</body>
</html>