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

📄 addschool.jsp

📁 包括所有开发文档以及数据库文件
💻 JSP
字号:
<%@ 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>


		<table width="700" align="center" class="td1">
			<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">
					<font class="f2"> <%
 	String success = (String) request.getAttribute("success");
 	if (success != null) {
 %> <%=success%> <%
 }
 %>
					
				</td>
			</tr>
			<tr>
				<td align="center" class="td1" colspan="2">
					<form action="addOwnSchool.do" method="post" " name="form1">
						<label>
							学校名称:
						</label>

						<input type="text" name="schoolName">
						<font class="f2"> <%
 	String schoolExist = (String) request.getAttribute("schoolExist");
 	if (schoolExist != null) {
 %> <%=schoolExist%> <%
 }
 %> </font>
						<br>
						<br>
						<br>
						<label>
							学校地址:
						</label>

						<input type="text" name="schoolAddress">


						<br>
						<br>
						<br>

						<input type="submit" value="提交" class="input2">
						&nbsp;&nbsp;&nbsp;
						<input type="Reset" value="重置" class="input2">

					</form>

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

	</body>
</html>

⌨️ 快捷键说明

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