?? checkmark.jsp
字號(hào):
<%@page language="java" contentType="text/html; charset=GBK"%>
<%@page import="java.sql.*,com.stuman.service.*"%>
<html>
<head>
<title>查看成績(jī)</title>
</head>
<%
String stuid = (String)session.getAttribute("stuid");
%>
<body>
<p align="center">
您所有的成績(jī)
</p>
<table border="1" align="center" width='85%'>
<tr>
<td width="40%">
課程名稱(chēng)
</td>
<td width="30%">
學(xué)分
</td>
<td width="30%">
成績(jī)
</td>
</tr>
<p>
<%
ListScore score = new ListScore();
score.list(request, out, stuid);
%>
</table>
<p>
</p>
<p>
<a href="student.jsp"><<Back </a>
</p>
</body>
</html>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -