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.
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();
}