forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteaDocuService.jsp
More file actions
128 lines (128 loc) · 3.08 KB
/
teaDocuService.jsp
File metadata and controls
128 lines (128 loc) · 3.08 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<%@ page contentType="text/html; charset=gb2312" language="java"
pageEncoding="GBK"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
<c:if test="${sessionScope.loginUser==null}">
<script language="javascript">
alert("您未登录或连线超时,请登录系统");
window.location.href="Content.jsp";
</script>
</c:if>
<html>
<head>
<title>网上图书超市</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<table width="80%" border="0" cellpadding="0" cellspacing="0"
class="tableBorder_LTR">
<tr>
<td height="44" colspan="6">
</td>
</tr>
</table>
<table width="80%" border="0" align="center" cellpadding="0"
cellspacing="0">
<tr>
<td width="80%" height="49" align="center">
<form name="form1" method="post" action="searchTeacherInfo.htm">
请输入查询条件:
<select name="condition" id="condition" tabindex="2">
<option selected="true">
姓名
</option>
<option>
身份证
</option>
<option>
教师编号
</option>
</select>
<input name="conditionContent" type="text" id="conditionContent">
<input type="submit" name="Submit" value="提交">
</form>
</td>
</tr>
</table>
<table width="90%" border="0" align="center" cellpadding="0"
cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="100%" height="362" valign="top">
<table width="100%" border="1" align="center" cellpadding="0"
cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td>
<div align="center">
教师编号
</div>
</td>
<td>
<div align="center">
姓名
</div>
</td>
<td>
<div align="center">
性别
</div>
</td>
<td>
<div align="center">
身份证
</div>
</td>
<td>
<div align="center">
授课专业
</div>
</td>
<td>
<div align="center">
维护
</div>
</td>
</tr>
<c:forEach var="tea" items="${list}">
<tr>
<td>
<div align="center">
${tea.teaId }
</div>
</td>
<td>
<div align="center">
${tea.name }
</div>
</td>
<td>
<div align="center">
${tea.sex }
</div>
</td>
<td>
<div align="center">
${tea.sfzh }
</div>
</td>
<td>
<div align="center">
${tea.systemSpecialtyCode.name }
</div>
</td>
<td class="button_03">
<div align="center">
<a href="serviceTeacherInfo.htm?teaId='${tea.teaId }'"
target="mainFrame">更改</a>
</div>
</td>
</tr>
</c:forEach>
</table>
</td>
</tr>
</table>
</body>
</html>