I am implementing a system where the user can Reset their password if they have forgotten it.

Once it is reset I want to give them the option of changing the password so that it will be something more memorable to them.

The password is hashed and if i enter in the correct old password and new password the password does change.

If I enter in the wrong old password and new password the password doesnt change.

Is there a way to match the old password with the old password field in code behind so I can throw up an error to the user to tell them what is wrong?

I have tried:

Dim currentUser As MembershipUser = Membership.GetUser()
currentUser.GetPassword()

But this won't work I think because the password is hashed.

Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Not that I'm aware of, but the ChangePassword method returns a bool (true if successful, false if not), so why not just throw up your message on a false result?

link|improve this answer
Thanks Paul. My own fault really, I was Googling ChangePassword and the results were ChangePassword Class and not Method, but found that now and helped me out. Thanks. – JBoom Jun 2 '11 at 9:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.