passwordReset.jsp~12~
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" import="officeol.mc.tools.*" %>
  2. <html>
  3. <head>
  4. <title>
  5. 天津市经贸委在线办公
  6. </title>
  7. </head>
  8. <body bgcolor="#ffffff">
  9. <h1>
  10. 用户密码重置
  11. </h1>
  12. <%
  13. DBConn dbc = new DBConn();
  14. Tool tl = new Tool();
  15. String un = request.getParameter("un");
  16. String pwd = tl.hash("111111");
  17. String sql = "update [user] set password='"+pwd+"' where unmd5='"+un+"'";
  18. dbc.executeUpdate(sql);
  19. session.setAttribute("msg1","用户"+un+"密码重置为 111111 ");
  20. response.sendRedirect("userset.jsp");
  21. %>
  22. </body>
  23. </html>