updatestu_confirm.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. <jsp:useBean id="student" scope="page" class="student">
  8. <jsp:setProperty name="student" property="*"/>
  9. </jsp:useBean>
  10. <body bgcolor="#0099FF" text="#FFFFFF" link="#66FF00">
  11. <p align="center"> 
  12.   <%
  13.   try{
  14. String id=(String )session.getAttribute("id");
  15. student.setId(id);
  16. String a = student.getSex();
  17. String c=student.getName();
  18. String d=student.getJiguan();
  19. String e = student.getDep();
  20. String f=student.getPassword();
  21. if(c==null || c.equals("")) throw new Exception("错误,学生姓名不能为空!");
  22. if(f==null || f.equals("")) throw new Exception("错误,学生密码不能为空!");
  23. out.print("    Id 为"+id+"的学生<br>");
  24. out.print("更改性别为: "+a+"<br>");
  25. out.print("更改姓名为"+c+"<br>");
  26. out.print("更改籍贯为 "+d);
  27. student.updateStudent();
  28. } catch(Exception e){out.print(e.toString());}
  29. %>
  30. </p>
  31. <p>&nbsp;</p>
  32. <p><a href="admin.jsp">&lt;&lt;Back</a></p>
  33. </body>
  34. </html>