adminupdatebus.jsp

来自「一个校车预定系统,我自己开发的一个校车预定系统,我自己开发的」· JSP 代码 · 共 71 行

JSP
71
字号
<%@ page contentType="text/html; charset=gb2312" language="java"
	import="java.sql.*" errorPage=""%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
		<title>Untitled Document</title>
	</head>

	<body>
		<h1>
			修改车次
		</h1>
		<form id="form1" name="form1" method="post"
			action="servlet/adminUpdateBusHandle">
			<label>
				<br />
				路线:  &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;
				<select name="path" size="1">
					<option value="1">
						本部至九龙湖
					</option>
					<option value="2">
						九龙湖至本部
					</option>
				</select>
				<br />
				<br />
				发车时间:
			</label>
			<label>
				<input name="year" type="text" value="2007" size="4" />
				<input name="month" type="text" size="2" />
				<input name="day" type="text" size="2" />
			</label>
			<label></label>
			<label></label>
			<label>
				<input name="hour" type="text" size="2" />
			</label>
			<label>
				<input name="min" type="text" size="2" />
			</label>
			<br />
			<br />
			截止时间:
			<label>
				<input name="dhour" type="text" size="2" />
			</label>
			<label>
				<input name="dmin" type="text" size="2" />
			</label>
			<input type="hidden" name="hiddenField"
				value=<%=request.getParameter("bid")%> />
			<br />
			<br /> 
			&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
			<input type="submit" name="Submit" value="确认修改" /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 
			<input type="reset" name="Submit" value="撤销返回"
				onclick="history.back()" />
		</form>
	</body>
</html>

⌨️ 快捷键说明

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