updatetea.jsp

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

JSP
67
字号
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="errorpage.jsp"%>
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
		<title>无标题文档</title>
	</head>

	<body bgcolor="#0099FF" text="#FFFFFF">
		<%String tea_id = request.getParameter("id");
			session.setAttribute("id", String.valueOf(tea_id));
%>
		<p align="center">
			<font color="#00FF00" size="+3" face="方正舒体">更新教师</font>
		</p>
		<p align="center">
			&nbsp;
		</p>
		<form name="form1" method="get" action="control.TeacherSvlt">
			<input type="hidden" name="action" value="update">
			<input type="hidden" name="id" value="<%=tea_id%>">
			<table width="51%" border="1" align="center">
				<tr>
					<td width="33%">
						教师姓名
					</td>
					<td width="67%">
						<input name="name" type="text" id="name">
					</td>
				</tr>
				<tr>
					<td>
						密码
					</td>
					<td>
						<input name="password" type="password" id="password">
					</td>
				</tr>
				<tr>
					<td>
						职称
					</td>
					<td>
						<select name="title" size="1" id="title">
							<option>
								讲师
							</option>
							<option>
								教授
							</option>
						</select>
					</td>
				</tr>
			</table>
			<p align="center">
				<input type="submit" name="Submit" value="提交">
			</p>
		</form>
		<p>
			&nbsp;

		</p>
		<p>
			<a href="getteacher.jsp">&lt;&lt;Back</a>
		</p>
	</body>
</html>

⌨️ 快捷键说明

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