|
|
<%@ page import="java.sql.*"%> <!-- 导入Java SQL包 -->
|
|
|
<%@ page import="java.util.*"%> <!-- 导入Java Util包 -->
|
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
|
pageEncoding="UTF-8"%> <!-- 设置页面语言为Java,内容类型和字符编码为UTF-8 -->
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- 定义HTML文档类型 -->
|
|
|
<html>
|
|
|
<head>
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <!-- 设置内容类型和字符编码 -->
|
|
|
<title>修改密码</title> <!-- 设置页面标题 -->
|
|
|
|
|
|
<link rel="stylesheet" href="${ctx}/toastr/toastr.min.css"> <!-- 引入外部CSS样式表 -->
|
|
|
</head>
|
|
|
<body>
|
|
|
<jsp:useBean id="check" scope="session" class="javabean.JDBCBean"></jsp:useBean> <!-- 使用JSP的useBean标签来实例化一个名为check的JavaBean对象 -->
|
|
|
<%
|
|
|
String psw1 = request.getParameter("psw1"); <!-- 获取请求参数psw1的值 -->
|
|
|
String psw2 = request.getParameter("psw2"); <!-- 获取请求参数psw2的值 -->
|
|
|
|
|
|
//out.println(psw1 + " " + psw2); <!-- 注释掉的代码,用于输出psw1和psw2的值 -->
|
|
|
String id = session.getAttribute("reader").toString(); <!-- 从会话中获取reader属性并转换为字符串 -->
|
|
|
|
|
|
if (psw1.equals(psw2) && psw1 != null && psw2 != null && !psw1.trim().equals("")
|
|
|
&& !psw2.trim().equals("")) { <!-- 检查两个密码是否相同且不为空 -->
|
|
|
String sql = "update borrow_card set PASSWORD ='" + psw1 + "' where ID=" + id; <!-- 构建SQL更新语句 -->
|
|
|
try {
|
|
|
int i = check.executeUpdate(sql); <!-- 执行SQL更新操作 -->
|
|
|
if (i == 1) { <!-- 如果更新成功 -->
|
|
|
%>
|
|
|
|
|
|
('修改成功!'); <!-- 弹出提示信息 -->
|
|
|
window.location.href = "index.jsp"; <!-- 重定向到index.jsp页面 -->
|
|
|
|
|
|
|
|
|
<%
|
|
|
} else { <!-- 如果更新不成功 -->
|
|
|
%>
|
|
|
|
|
|
('修改未成功!'); <!-- 弹出提示信息 -->
|
|
|
window.location.href = "index.jsp"; <!-- 重定向到index.jsp页面 -->
|
|
|
|
|
|
<%
|
|
|
}
|
|
|
} catch (Exception e) { <!-- 捕获异常 -->
|
|
|
%>
|
|
|
|
|
|
('修改未成功!'); <!-- 弹出提示信息 -->
|
|
|
window.location.href = "index.jsp"; <!-- 重定向到index.jsp页面 -->
|
|
|
|
|
|
<%
|
|
|
}
|
|
|
} else { <!-- 如果密码验证失败 -->
|
|
|
%>
|
|
|
|
|
|
('修改未成功!'); <!-- 弹出提示信息 -->
|
|
|
window.location.href = "index.jsp"; <!-- 重定向到index.jsp页面 -->
|
|
|
|
|
|
<%
|
|
|
}
|
|
|
%>
|
|
|
|
|
|
</body>
|
|
|
</html>
|