forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselected.jsp
More file actions
69 lines (66 loc) · 2.32 KB
/
selected.jsp
File metadata and controls
69 lines (66 loc) · 2.32 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
<%@ 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>
<title>selected.jsp</title>
<link rel="stylesheet" type="text/css" href="images/style.css">
</head>
<body>
<table width="845" cellspacing="0" align="center">
<tr>
<td height="124" colspan="2" background="images/topU.gif"> </td>
</tr>
<tr>
<td width="150" height="500" align="left" valign="top" bgcolor="#E4F0D8">
<jsp:include page="left.jsp"/>
</td>
<td align="left" valign="top">
<table cellspacing="0" width="600px" align="center">
<tr>
<td height="20" colspan="2"></td>
</tr>
<tr>
<td width="14" background="images/jiantou.jpg"> </td>
<td width="585"><span class="STYLE2">当前位置:</span>查询已选课程</td>
</tr>
<tr>
<td height="8" colspan="2"></td>
</tr>
<tr>
<td height="3" colspan="2" bgcolor="#b1de69"></td>
</tr>
<tr>
<td height="20" colspan="2"></td>
</tr>
</table>
<table width="500" align="center" cellspacing="0">
<tr>
<td height="30" align="center" class="td0"><strong>课程名称</strong></td>
<td align="center" class="td0"><strong>授课教师</strong></td>
<td align="center" class="td0"><strong>学分</strong></td>
<td align="center" class="td0"><strong>上课时间</strong></td>
<td align="center" class="td0"><strong>上课地点</strong></td>
</tr>
<logic:iterate id="list" name="list">
<tr>
<td height="30" align="center" class="td1">
<html:link page="/stuUser.do?method=courseInfo&id=${list[1].id}&path=selected">
${list[1].name}</html:link></td>
<td align="center" class="td1">${list[1].teacherName}</td>
<td align="center" class="td1">${list[1].credit }</td>
<td align="center" class="td1">${list[1].schooltime}</td>
<td align="center" class="td1">${list[1].addr}</td>
</tr>
</logic:iterate>
</table>
</td>
</tr>
<tr>
<td height="85" colspan="2" align="center" background="images/bottomU.gif"> </td>
</tr>
</table>
</body>
</html:html>