?? getcourseofstu.jsp
字號:
<%@ page language="java" errorPage="/error.jsp" pageEncoding="UTF-8" contentType="text/html;charset=utf-8" isELIgnored="false" %>
<%@include file="/jsp/common/taglibs.jsp" %>
<html>
<head>
<title>你選擇的學生</title>
<% String root=request.getContextPath(); %>
</head>
<script>
var gotoCurrentPageURL ='<%=root%>/teacherAction.do?method=initOpenSelectStu¤tPage=';
</script>
<body>
<p align=center>
你選擇的該課程的學生
</p>
<table width="75%" border="1" align="center">
<THEAD>
<tr>
<td>
姓名
</td>
<td>
所在系
</td>
<td>
性別
</td>
<td>
學分
</td>
<td>
E-mail
</td>
<td>
聯系電話
</td>
<td>
接受
</td>
</tr>
<c:forEach items="${list}" var="currentStudent" >
<tr>
<td>
<c:out value="${currentStudent.name}"></c:out>
</td>
<td>
<c:out value="${currentStudent.department}"></c:out>
</td>
<td>
<c:out value="${currentStudent.sex}"></c:out>
</td>
<td>
<c:out value="${currentStudent.mark}"></c:out>
</td>
<td>
<c:out value="${currentStudent.email}"></c:out>
</td>
<td>
<c:out value="${currentStudent.phone}"></c:out>
</td>
<TD>
<a href="<%=root%>/teacherAction.do?method=regeditStu&id=<c:out value="${currentStudent.id}"></c:out>&classesId=<c:out value="${classesId}"></c:out>">接受</a>
</TD>
</tr>
</c:forEach>
</THEAD>
</table>
<table width="98%" >
<tr>
<td colspan=10 align=center>
<font color="#000066">
</font></td>
</tr>
</table>
<p>
<a href="<%=root%>/teacherAction.do?method=initSelectStu"><<返回</a>
</p>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -