ASP.NET 会员密码重置

发布于 2024-08-28 01:13:48 字数 169 浏览 6 评论 0原文

这太疯狂了,我已经尝试了几个小时才能让它发挥作用。

我的客户希望能够为忘记密码的用户重置密码,他拥有的唯一参数是用户名。 他不希望用户能够自己重置密码,不,那太容易了...ARGHHHHH!

无论如何,如果有人对我如何重置某人的密码或以某种方式给他们一个新的临时密码有任何建议,我将不胜感激。

This is crazy, I have been trying for hours to get this to work.

My client wants to be able to reset password for users who have forgotten them The only parameter he has is the UserName.
He does NOT want the user to be able to reset the password themselves, no that would be too easy...ARGHHHHH!!

Anyway, if anyone has any suggestions how I could reset someones password or give them a new temp password somehow, that would be greatly appreciated.

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

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

发布评论

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

评论(1

蓝海 2024-09-04 01:13:48

像这样的事情怎么样?

MembershipUser mu = Membership.GetUser(username);
mu.ChangePassword(mu.ResetPassword(), password);

这是一个 链接,它与 Q& 一起执行此操作(使用上面的代码片段)。提供程序中的一项功能。

How about something like this?

MembershipUser mu = Membership.GetUser(username);
mu.ChangePassword(mu.ResetPassword(), password);

Here's a link that does this (with above code snippet) in conjunction with the Q&A feature on in the provider.

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