how can i change password manual directly in table membership? passwordformat=1, so how can i crypt password before insert into table?
how can i change password manual directly in table membership? passwordformat=1, so how can
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s a hack you can use:
Assuming you’re not requiring the Security Question / Answer feature, you can call the
ResetPassword()method in the membership API and then use the return value of that method as the old value forChangePassword().Something like this:
There’s a more complicated hack you can use if you are requiring the Security Q&A.