?? addteacher.jsp
字號:
<%@ 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" link="#66FF00">
<p>
<%
String admin_id = (String)session.getAttribute("id");
if(admin_id==null){response.sendRedirect("login.jsp");}
%>
</p>
<p align="center"><font color="#00FF00" size="+3" face="華文行楷">新增教師</font></p>
<form name="form1" method="post" action="TeacherSvlt">
<input type="hidden" name="action" value="new">
<p> </p>
<div align="center">
<table width="51%" border="1">
<tr>
<td width="33%">教師姓名</td>
<td width="67%"><input name="name" type="text" id="name"></td>
</tr>
<tr>
<td>教師號</td>
<td><input name="id" type="text" id="id"></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>
<input name="確定" type="submit" id="確定" value="提交">
</p>
</div>
</form>
<p> </p>
<p><a href="getteacher.jsp"><<Back</a></p>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -