updateschool.jsp

来自「包括所有开发文档以及数据库文件」· JSP 代码 · 共 74 行

JSP
74
字号
<%@ page language="java" contentType="text/html;charset=GBK"%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>

		<base href="<%=basePath%>">

		<title>权限管理系统</title>

		<meta http-equiv="Content-Type" content="text/html; charset=GBK">
		<meta http-equiv="pragma" content="no-cache">
		<meta http-equiv="cache-control" content="no-cache">
		<meta http-equiv="expires" content="0">
		<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
		<meta http-equiv="description" content="This is my page">
		<link href="qxgl.css" rel="stylesheet" type="text/css" />
	</head>
	<body>
		<%
		String schoolId1 = request.getAttribute("schoolId").toString();
		%>
		<table width="700" align="center">
			<tr>
				<td align="center" class="td2">
					<a href="selectOwnSchool.do">【查看所属学校】</a>
				</td>
				<td align="center" class="td2">
					<a href="enaddOwnSchool.do">【新增学校】</a>
				</td>
			</tr>
			<tr>
				<td align="center" class="td1" colspan="2">
					<form action="updateOwnSchool.do" method="post" name="form1">
						<label>
							学校名称:
						</label>

						<input type="text" name="schoolName">
						<br>
						<br>
						<br>

						<label>
							学校地址:
						</label>

						<input type="text" name="schoolAddress">
						<input type="hidden" name="schoolId" value="<%=schoolId1%>">
						<br>
						<br>

						<br>


						<input name="button2" type="submit" value="修改" class="input2">
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
						<input name="button2" type="reset" value="重置" class="input2">


					</form>
				</td>
			</tr>
		</table>

	</body>
</html>

⌨️ 快捷键说明

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