使用 ASP.NET 2.0 Membership API 时是否可以更新 PasswordAnswer?

发布于 2024-08-08 05:08:52 字数 111 浏览 5 评论 0原文

使用 ASP.NET 2.0 Membership API 时是否可以更新 PasswordAnswer?我想澄清的是,我并不是试图更改密码,而是尝试为用户提供更新他们在注册时指定的安全问题和安全答案的选项。

Is there a way to update the PasswordAnswer when using the ASP.NET 2.0 Membership API? I want to be clear, I'm not trying to change the password, but rather I'm trying the give the user the option to update the Security Question and Security Answer they specified when enrolling.

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

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

发布评论

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

评论(1

℉服软 2024-08-15 05:08:52

MembershipProvider 基类有一个名为 ChangePasswordQuestionAndAnswer 的可重写方法。您可以使用它来更改安全问题和答案。签名看起来像这样:

public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer)
    {
        // your implementation here.
    }

The base MembershipProvider class has an overridable method called ChangePasswordQuestionAndAnswer. You can use this to change the security question and answer. The signature looks like so:

public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer)
    {
        // your implementation here.
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文