Tagged Questions

3
votes
2answers
698 views

asp.net membership change password without knowing old one

Evaluting the method signature, it is required to know old password while changing it. membershipUser.ChangePassword(userWrapper.OldPassword, userWrapper.Password) Is there any way to change ...
2
votes
2answers
310 views

Old password still working after password change in asp.net membership

Am using ASP.NET membership authentication in a small website and i just noticed some thing funny during testing. Am trying to enable user to change their login password any time they wish, i dragged ...
1
vote
0answers
102 views

ChangePasswordFailure .. ChangePassword control

Every time i try to change a password to any other password. It invalidates my passwords (the new password, and confirmed password).. and then the ChangePasswordFailureText appears. I dealt with that ...
1
vote
2answers
3k views

How to not use ASP.Net Membership Security Question and Answer for custom password recovery?

I don't want to have the security question and answer feature that ASP.Net Membership Provider gives, but I DO want to enable a lost/forgotten password page. This page would be where a user would ...
0
votes
1answer
208 views

Membership ChangePassword (hashed) match current password against old password field

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 ...