0

Does AspNetDB automatically reset Locked Out users?

I can't find anything saying it does... just looking for confirmation that I haven't missed something.

Cœur
  • 37,241
  • 25
  • 195
  • 267
scw
  • 5,450
  • 8
  • 36
  • 49

1 Answers1

0

No, it doesn't automatically unlock users. There is an UnlockUser method you can call, but you have to implement your own logic on when to unlock it.

public bool UnlockAccount(MembershipUser user)
{
    return user.UnlockUser();
}
scw
  • 5,450
  • 8
  • 36
  • 49