如何通过旧密码检查更改会员密码

发布于 2024-11-14 19:58:16 字数 104 浏览 0 评论 0原文

我开发了一个网络应用程序。它有一个使用 ASP.NET 会员资格的登录表单。现在我需要添加一个允许更改密码的表单。在设置新密码之前,用户必须输入旧密码。

如何检查旧密码是否有效?

I developed a web application. It has a login form using ASP.NET membership. Now I need to add a form allowing to change the password. Before a new password can be set, the old password must be entered by the user.

How can I check if the old password is valid?

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

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

发布评论

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

评论(3

呆° 2024-11-21 19:58:16
// checking if the old password is correct
if (Membership.ValidateUser(username, oldPassword))  
{  
    // setting a new password
    string newPassword = MembershipUser.ResetPassword();  
}  

Membership.ValidateUser
Membership.ResetPassword

// checking if the old password is correct
if (Membership.ValidateUser(username, oldPassword))  
{  
    // setting a new password
    string newPassword = MembershipUser.ResetPassword();  
}  

Membership.ValidateUser
Membership.ResetPassword

喜你已久 2024-11-21 19:58:16

如果用户登录,那么您就有用户 ID

,因此可以使用它检索所有用户信息,例如用户名密码。

现在你可以要求用户输入他的旧密码,现在匹配这两个,如果两者都匹配,然后用新密码更改密码。

if The User logged In then you have the User Id

so retrieve all user Information like user name password using It.

now you Can just ask User to enter his old password now match this two if both matched then change the password with new One.

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