Question

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.

Was it helpful?

Solution

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();
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top