I want to use SimpleMembershipProvider
for membership management. and use MaxInvalidPasswordAttempts
SO when user tries to login and if MaxInvalidPasswordAttempts
exceeds. It should deactivate the account. I want to Set MaxInvalidPasswordAttempts
in SimpleMembershipProvider
But its not happening.
EDIT :
Okay, I learned that its not possible. So, I have to inherit the SimpleMembershipProvider
class and override those functions.
REQUEST :
Can anybody give the already implemented class with all the functions in it, just like the SqlMembershipProvider
.