如何通过旧密码检查更改会员密码
我开发了一个网络应用程序。它有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Membership.ValidateUser
Membership.ResetPassword
Membership.ValidateUser
Membership.ResetPassword
如果用户登录,那么您就有用户 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.
使用更改密码控件。
http://msdn.microsoft.com/en -us/library/system.web.ui.webcontrols.changepassword.aspx
Use the ChangePassword control.
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.changepassword.aspx