updateinformation.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" %>
  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. <div align="center">
  9.   <p>
  10.     <%
  11. String stu_id = (String)session.getAttribute("id");
  12. if(stu_id==null){response.sendRedirect("login.jsp");} 
  13. %>
  14.     <font color="#00FF00" size="+3" face="方正舒体">更改您的个人信息 </font></p>
  15.   <p>&nbsp; </p>
  16. </div>
  17. <form name="form1" method="post" action="StudentLoginSvlt">
  18.   <input type="hidden" name="action" value="update">
  19.    <input type="hidden" name="id" value="<%=stu_id%>">
  20.   <table width="55%"  border="1" align="center">
  21.     <tr>
  22.       <td>新密码:</td>
  23.       <td><input name="password1" type="password" id="password1"></td>
  24.     </tr>
  25.     <tr> 
  26.       <td width="42%">确认:</td>
  27.       <td width="58%"> <input name="password2" type="password" id="password2" > </td>
  28.     </tr>
  29.     <tr> 
  30.       <td>电话:</td>
  31.       <td> <input name="tel" type="text" id="tel2"> </td>
  32.     </tr>
  33.     <tr> 
  34.       <td>E_mail:</td>
  35.       <td> <input name="e_mail" type="text" > </td>
  36.     </tr>
  37.   </table>
  38.   <p align="center">
  39.     <label></label>
  40.   </p>
  41.   <p align="center">&nbsp;</p>
  42.   <p align="center">
  43.     <input type="submit" name="Submit" value="提交">
  44.   </p>
  45. </form>
  46. <a href="student.jsp">&lt;&lt;Back </a> 
  47. </body>
  48. </html>