posted 17 years ago
Hello ,
Here Is my code:
if(resetPwd=true){
theForm.setResetPassword(true);
user.setPassword(theForm.getPassword());
user.setPassword(theForm.getRepassword());
}
if(resetPwd=false){
theForm.setResetPassword(false);
user.setEncodedPassword(Integer.parseInt(theForm.getPassword()));
user.setEncodedPassword(Integer.parseInt(theForm.getRepassword()));
I have edit user option and in that i can edit my password also and can set new password.So in save user i am using both setpassword();and setEncodedPassword();.
If user did not change password then it should be setencoded password but in my case it is not exixuting and always it will set new password for the same user when i edit.because resetpassword is always true.
please help me to resolve this issue.what wrong in my code please let me know.
thanks in advance.