0
votes
Why is the User information stored in two different tables in ASP.NET’s default Membership Provider?
Some of the other providers in ASP.NET (other than the Membership provider) also store user-specific information. e.g. Profile.
More information about this:
Several of the shipped A …
0
votes
Disabling account lockout with the SqlMembershipProvider
You could also try setting PasswordAttemptWindow to zero. That may work, since it reduces the length of time in which the number of failed attempts can accumulate.
…
0
votes
How do I call Initialize on a custom MembershipProvider?
Since the Initialize method isn't called, I guess the next question is whether your provider being instantiated? If you don't already have one, try adding a public parameterless constructor and put …
1
vote
Mocking Membership
Could you inject a MembershipProvider instance into your profile provider and, if none is injected, fall back on using Membership.Provider?
public Membersh …
