日期:2014-05-18 浏览次数:20829 次
String pwd = request.getParameter("jsp页面pwd文本框name");//接受原始密码 if(pwd == null) { //密码为空 } else { //将原始密码当参数传到一个方法中 //String sql = "selct pwd from user where pwd = '"+pwd+"'" //返回值判断原始密码 如果相同我们按照1算 否则0算 //接受方法返回值 int check = 方法(pwd); if(check == 1) { //原始密码想同 String pwdNew= request.getParameter("jsp页面pwd文本框name");//接受新密码 调用update方法 update数据库pwd字段,更新 判断方法返回值看是否更新成功 } else { //不相同 } }
------解决方案--------------------
<form action="member_login.jsp" method="post" name="form1" onSubmit="return Checkspace(this);">
function Checkspace(theForm)
{
if (theForm.username.value == "")
{
alert("请输入用户名。");
theForm.username.focus();
return (false);
}
if (theForm.password.value == "")
{
alert("请输入密码。");
theForm.password.focus();
return (false);
}
}