Asp.net Membership - Accounts getting locked out
问题 We're using the standard ASP.net membership features that come with asp.net. Certain accounts in our membership database have a "Locked Out" flag set to true - when/how does this happen? 回答1: After a configurable number of failed logins (maxInvalidPasswordAttempts, default = 5) within a configurable length of time (passwordAttemptWindow, default = 10 minutes), the account will be locked out. see here for membership related configuration properties 回答2: These 4 guys did a great job of