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

📄 marking.jsp

📁 一个学生课绩管理系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="errorpage.jsp"%>
<html>
	<body bgcolor="#0099FF">
		<%String stu_id = request.getParameter("stu_id");
			String class_id = request.getParameter("class_id");
%>
		<p>
			&nbsp;
		</p>
		<p align="center">
			<font color="#00FF00" size="+3" face="方正舒体">学生成绩</font>
		</p>
		<form method="post" action="control.MarkSvlt">
			<input type="hidden" name="action" value="marking">
			<input type="hidden" name="id" value="<%=stu_id%>">
			<input type="hidden" name="class_id" value="<%=class_id%>">
			<table width="75%" border="1" align="center">
				<tr>
					<td width="41%">
						学生号
					</td>
					<td width="59%">
						成绩
					</td>
				</tr>
				<tr>
					<td>
						<%=stu_id%>
					</td>
					<td>
						<input name="score" type="text" id="score">
					</td>
				</tr>
			</table>
			<p>
				&nbsp;
			</p>
			<div align="center">
				<input type="submit" name="Submit" value="提交">
			</div>
		</form>
	</body>
</html>

⌨️ 快捷键说明

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