marking.jsp

来自「一个学生课绩管理系统」· JSP 代码 · 共 44 行

JSP
44
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?