配置SqlMembershipProvider无需密码
我需要对新用户使用没有密码的 SqlMembershipProvider。 我怎样才能做到这一点?
谢谢!
I need to use the SqlMembershipProvider without password to new users.
How can I do that?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 SqlMembership 提供程序,需要密码(这是一件好事)。如果您确实希望用户没有密码(我很想知道什么情况需要这样做),那么您将必须使用自定义会员资格提供程序和自定义登录控件,因为它们也都强制使用密码。
With the SqlMembership provider passwords are required (and this is a good thing). If you really want to have users who don't have passwords (and I'd love to know what scenario needs this) then you will have to use a custom membership provider, and custom login controls, as they all enforce passwords as well.