Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AspNetDB 会自动重置锁定的用户吗?
我找不到任何说它确实的东西......只是在寻找我没有错过任何东西的确认。
不,它不会自动解锁用户。您可以调用一个 UnlockUser 方法,但您必须实现自己的逻辑来确定何时解锁它。
public bool UnlockAccount(MembershipUser user) { return user.UnlockUser(); }