📄 checkmark.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" width='85%'>
<tr>
<td width="40%">
课程名称
</td>
<td width="30%">
学分
</td>
<td width="30%">
成绩
</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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -