ASP.NET 会员资格由用户和管理员自定义更改密码

发布于 2024-11-14 15:56:04 字数 212 浏览 2 评论 0原文

我仍在搜索 StackOverFlow 以及内胎,但尚未找到我需要做什么的示例。

  1. 如果用户忘记了密码并且正确回答了提醒问题,则会向用户显示两个用于输入新密码的表单字段;不通过电子邮件发送或显示随机生成的密码。

  2. 如果用户致电支持中心,管理员可以更改密码、提醒问题和答案。

谢谢,

詹姆斯

I am still searching StackOverFlow as well as the innertubes but have not found an example of what I need to do.

  1. If an user has forgotten their password and they correctly answer their reminder question, the user is shown two form fields for entering a new password; Not Emailing or displaying a random generated password.

  2. If the user calls the support center, an admin can change the password, the reminder question and the answer.

Thanks,

James

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

再可℃爱ぅ一点好了 2024-11-21 15:56:04

只需使用此代码:

 var user = Membership.GetUser(username);
 user.ChangePassword(user.ResetPassword(), newPassword);

这只是首先重置密码,然后将其更改为新密码,您不需要知道重置的中间密码

just use this code:

 var user = Membership.GetUser(username);
 user.ChangePassword(user.ResetPassword(), newPassword);

this simply first resets the password and then changes it to the new password, you don't need to know the reseted intermediate password

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文