updatetea.jsp
上传用户:ht0805
上传日期:2013-10-20
资源大小:384k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="errorpage.jsp" %>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  5. <title>无标题文档</title>
  6. </head>
  7. <body bgcolor="#0099FF" text="#FFFFFF">
  8. <%
  9. String tea_id=request.getParameter("id");
  10. session.setAttribute("id",String.valueOf(tea_id));
  11. %>
  12. <p align="center"><font color="#00FF00" size="+3" face="方正舒体">更新教师</font></p>
  13. <p align="center">&nbsp;</p>
  14. <form name="form1" method="get" action="TeacherSvlt">
  15.   <input type="hidden" name="action" value="update">
  16.   <input type="hidden" name="id" value="<%=tea_id%>">
  17.   <table width="51%"  border="1" align="center">
  18.     <tr> 
  19.       <td width="33%">教师姓名</td>
  20.       <td width="67%"><input name="name" type="text" id="name"></td>
  21.     </tr>
  22.     <tr> 
  23.       <td>密码</td>
  24.       <td><input name="password" type="password" id="password"></td>
  25.     </tr>
  26.     <tr> 
  27.       <td>职称</td>
  28.       <td><select name="title" size="1" id="title">
  29.           <option>讲师</option>
  30.           <option>教授</option>
  31.         </select></td>
  32.     </tr>
  33.   </table>
  34.   <p align="center"> 
  35.     <input type="submit" name="Submit" value="提交">
  36.   </p>
  37. </form>
  38. <p>&nbsp;</p>
  39. <p><a href="getteacher.jsp">&lt;&lt;Back</a></p>
  40. </body>
  41. </html>