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

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

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" %>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  5. <title>无标题文档</title>
  6. </head>
  7. <jsp:useBean  id="update" scope="page" class="update">
  8. <jsp:setProperty name="update" property="*"/>
  9. </jsp:useBean>
  10. <body bgcolor="#0099FF" text="#FFFFFF" link="#00FF00">
  11. <%
  12. try {
  13. String s = request.getParameter("password");
  14. if(s==null || s.equals("")) throw new Exception("错误,密码不能为空!!");
  15. String stu_id = (String)session.getAttribute("id");
  16. if(stu_id==null){response.sendRedirect("login.jsp");} 
  17. update.setStu_id(stu_id);
  18. update.update();
  19. String d= update.getStu_id();
  20. out.print("学生号:  "+d+"<br>");
  21. String a = update.getPassword();
  22. out.print("您的新密码:  "+a+"<br>");
  23. String b= update.getTel();
  24. out.print("您的电话:  "+b+"<br>");
  25. String c= update.getE_mail();
  26. out.print("E_mail:  "+c+"<br>");
  27. %>
  28. <p><a href="student.jsp">&lt;&lt;您已经更新成功,请返回</a> 
  29. <p>
  30. <%
  31. }catch (Exception e){out.print(e.toString());}
  32. %>
  33. </body>
  34. </html>