I'm trying to create a user using Membership.CreateUser. After I pass the following line: MembershipUser newUser = Membership.CreateUser(_UserName, _Password, _UserName);

I check the 'aspnet_Membership' table and I find out that the user is indeed created. At that point I stop the application and I check the table again. Mysteriously the user that has just been created is dissapeared.

Does anyone understands what's going on?

Thanks a lot, Assaf.

link|improve this question
feedback

1 Answer

Quick guess, but it sounds like an error is occuring and a transaction rollback is occurring.

Check for a MembershipCreateUserException

link|improve this answer
Thank you for the prompt answer. However, I do check it and there is no exception raised. Any other ideas? By the way, i should mention that this function has been working up until now. hmm... maybe it is worth mentioning that in the last hour I was twicking the membership parameters so that password will not be hashed, i.e., passwordFormat="Clear" . – Assaf Jun 14 '10 at 22:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.