Change User Password in ASP.NET Forms Authentication

前端 未结 5 1875
一生所求
一生所求 2021-01-02 16:47

I code in C# (ASP.NET) and am using Forms authentication.
I would like to know which is the best method to change a user password without using the asp:ChangePassword c

5条回答
  •  滥情空心
    2021-01-02 17:27

    This Membership Provider has not been configured to support password retrieval.

    The above message is displayed because of your password format will be salt and so that you can't get the password of the user. If you want to do this change the password format and try again.

提交回复
热议问题