⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checkmark.jsp

📁 本系统实现的是一个学生课程及成绩管理系统
💻 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>
			&nbsp;
		</p>
		<p>
			<a href="student.jsp">&lt;&lt;Back </a>
		</p>
	</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -