?? displaycourse.jsp
字號:
<%@page language="java" contentType="text/html; charset=GBK"%>
<%@page import="java.sql.*,com.stuman.service.*"%>
<html>
<head>
<title>選報課程</title>
</head>
<%
String stuid = (String)session.getAttribute("stuid");
%>
<body>
<p align="center">
您可以選報的課程為
</p>
<table border="1" align="center">
<tr>
<td width="54">
課程號
</td>
<td width="54">
課程名
</td>
<td width="57">
預修課
</td>
<td width="58">
系別
</td>
<td width="59">
班級號
</td>
<td width="69">
教室號
</td>
<td width="88">
上課時間
</td>
<td width="88">
教師
</td>
<td width="83">
選擇
</td>
</tr>
<p>
<%
ListCourseForStu courlist = new ListCourseForStu();
courlist.list(request, out, stuid);
%>
</table>
<p>
</p>
<p>
<a href="student.jsp"><<Back </a>
</p>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -