从基于表单的身份验证中删除安全问题
我正在构建一个启用 FBA (SqlMembershipProvider) 的小型网站,我希望注册尽可能简单,只需提示输入用户名(电子邮件地址)和密码。
如何从创建用户控件中删除安全问题?
I'm building a small website which will have FBA enabled (SqlMembershipProvider) and I want signup to be as simple as possible, just a prompt for username (email address) and password.
How do I remove the security question from the create user control?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的错,我抢了那一个。
看起来控件会感知底层提供者是否需要问题和答案。 那么,您是否尝试过在 web.config 中禁用它?
以下错误答案:
设置 QuestionAndAnswerRequired< /a> 属性为 false。
My bad, I jumped the gun on that one.
It looks like the control will sense if the underlying provider required a question and answer. So, have you tried disabling it in the web.config?
Wrong answer below:
Set the QuestionAndAnswerRequired property to false.
在 web.config 中设置 requireQuestionAndAnswer="false"
即:
Set requiresQuestionAndAnswer="false" in your web.config
i.e.: