update_pwd.jsp~20~
上传用户:top0756
上传日期:2022-08-11
资源大小:6501k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

VBScript

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <%@ page import="java.sql.*" %>
  3. <%@ page language="java" %>
  4. <%@ page import="java.util.*" %>
  5. <%@ page import="proj112.*" %>
  6. <jsp:useBean id="a" scope="page" class="proj112.dbconn"/>
  7. <html>
  8. <head>
  9. <title>
  10. change_pwd
  11. </title>
  12. </head>
  13. <body bgcolor="#ffffff">
  14. <%  String sql="";
  15.     String password=request.getParameter("pwd2");
  16.     String number=(String)session.getAttribute("id");
  17.     sql="update student set password ='"+password+"' where stu_id ='"+number+"'";
  18.     a.executeUpdate(sql);
  19.     response.sendRedirect("welcome.jsp") ;
  20.  %>
  21. </body>
  22. </html>