Does AspNetDB automatically reset Locked Out users?

117 Views Asked by At

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.

1

There are 1 best solutions below

0
scw On BEST ANSWER

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