忘记了使用 ASP.Net 会员提供商的密码?
是否可以使用 ASP.Net 会员提供程序实现“忘记密码”?
任何示例链接都值得赞赏。
谢谢
Is it possible to implement a "forgot password" using ASP.Net membership provider?
Any sample link is appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用密码恢复控件或者您可以在您的会员资格提供商上调用 GetPassword() 或 ResetPassword() 方法。
Use PasswordRecovery control or You can call GetPassword() or ResetPassword() methods on your membership provider.
到目前为止,我见过的最好的解决方案是按如下方式重置它:
这非常方便,特别是如果您的密码经过哈希处理。
The best solution I've seen so far is to reset it as follows:
This is very handy especially if your passwords are hashed.