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: \[code\]MembershipUser user = Membership.CreateUser(username, password, email, question, answer, true, out status);\[/code\]I run into a situation where \[code\]status != MembershipCreateStatus.Success || user == null\[/code\]yet entries are added to the tables: aspnet Users and aspnet Membership. Here is what I have in my web.config\[code\] passwordStrengthRegularExpression="" minRequiredPasswordLength="4" minRequiredNonalphanumericCharacters="0"\[/code\]Can someone enlighten me on how to reproduce this issue so that I can fix the related issue in my code?