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

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 username='"+un+"'";
  18. out.print("用户"+un+"密码重置为 111111 ");
  19. %>
  20. </body>
  21. </html>