ASP.NET web表单识别系统重置密码(Webforms ASP.NET Identity sy

2019-09-26 14:19发布

我怎样才能得到用户的使用web表单新的ASP.NET识别系统的密码? 或者我怎么可以重置不知道目前的一个(用户忘记密码)?

Answer 1:

我绑这种方式重置密码,并将其发送给用户

if (userId != string.Empty)
        {
            string _newPass = RandomPass();

            if (manager.HasPassword(userId))
            {
                IdentityResult ir1 = manager.RemovePassword(userId);
                if (ir1.Succeeded)
                {
                    IdentityResult ir2 = manager.AddPassword(userId, _newPass);

                    if (ir1.Succeeded && ir2.Succeeded)
                    {
                        //Send password to user via sms or email
                        Response.Redirect("~/RecoverPassword?m=ChangePwdSuccess");
                    }
                    else
                    {
                        AddErrors(ir1);
                        AddErrors(ir2);
                    }
                }
            }
        }


文章来源: Webforms ASP.NET Identity system reset password