从对象模型而不是数据库获取 FailedPasswordAttemptCount 的值
我试图从 ASP.NET 内置对象中获取 FailedPasswordAttemptCount ,但找不到,有什么方法可以在不创建新的storedProc 的情况下获取该值吗?
如果这个问题是多余的,请原谅。
提前致谢。
I am trying to get the FailedPasswordAttemptCount
from the ASP.NET built in objects and I am not able to find one, is there any way I can get this value without creating a new storedProc?
Excuse me if the question is redundant.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现内置
SqlMembershipProvider
使用此属性的唯一一个功能是:它是私有的。因此,最好的解决方案是覆盖现有的解决方案,并使用添加方法推出自己的方法来收集所需的数据,例如:
用法:
The only one function of buil-in
SqlMembershipProvider
uses this property I found is:it's private. Thus the best solution is to override the existed one, and roll your own with addition method to gather the data you need, e.g.:
Usage: