forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshowSpecialty.jsp
More file actions
98 lines (94 loc) · 2.41 KB
/
showSpecialty.jsp
File metadata and controls
98 lines (94 loc) · 2.41 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
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<link href="images/css.css" rel="stylesheet" type="text/css">
</head>
<body>
<table align="center" width="90%">
<tr>
<td colspan="2">
<table width="750px">
<tr>
<td align="right" valign="middle">
<a href="manager/addSpecialty.jsp"><img
src="images/addSpecialty.gif" border="0" />
</a>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="34" height="32" valign="middle">
<span class="STYLE1"><img src="images/jiantou.jpg" width="15"
height="17" />
</span>
</td>
<td width="779" valign="middle">
<span class="STYLE1">当前位置:</span>专业管理
</td>
</tr>
<tr>
<td colspan="2">
<p>
<table border="0" align="center" cellpadding="0" cellspacing="0"
width="750">
<tr>
<td class="td0">
专业编号
</td>
<td class="td0">
专业名称
</td>
<td class="td0">
开设年份
</td>
<td class="td0">
专业学制
</td>
<td class="td0">
是否结业
</td>
<td class="td0">
操作
</td>
</tr>
<logic:iterate id="specialty" name="list">
<tr>
<td class="td1">
${specialty.id}
</td>
<td class="td1">
${specialty.name}
</td>
<td class="td1">
${specialty.enterYear}
</td>
<td class="td1">
${specialty.langthYear}
</td>
<td class="td1">
${specialty.isFinish?"是":"否"}
</td>
<td class="td1">
<logic:equal name="specialty" value="true" property="isFinish">
已结业 </logic:equal>
<logic:equal name="specialty" value="false" property="isFinish">
<html:link page="/specialty.do?method=updateIsFinish"
paramId="id" paramName="specialty" paramProperty="id">设置为已结业</html:link>
</logic:equal>
</td>
</tr>
</logic:iterate>
</table>
</td>
</tr>
</table>
</body>
</html:html>