There is an issue reported here http://stackoverflow.com/questions/481416/asp-net-membership-issues-with-registration which summarizes a situation I am experiencing. I'm not sure I understand the claimed solution.
Simply put, after invoking this line:
MembershipUser user = Membership.CreateUser(username, password, email, question, answer, true, out status);
I run into a situation where
status != MembershipCreateStatus.Success || user == null
yet entries are added to the tables: aspnet Users and aspnet Membership.
Here is what I have in my web.config
passwordStrengthRegularExpression="" minRequiredPasswordLength="4" minRequiredNonalphanumericCharacters="0"
Can someone enlighten me on how to reproduce this issue so that I can fix the related issue in my code?