I have a .Net MVC application that I am trying to use an email address as the username. I implemented the logic from this article where the username is masked as the email. However, when I try to call

private readonly MembershipProvider _provider;
MembershipCreateStatus status;
_provider.CreateUser(userName, password, email, null, null, true, false, out status);

where the username is "email@email.com", the status always returns as InvalidProviderUserKey. If i use a standard username (without the @), it works fine. I tried searching for a solution but i can really find an explanation of InvalidProviderUserKey anywhere.

I was wondering if someone has run into this problem before or might be able to offer an explanation of why this scenario would be returning this specific status. Thanks in advance for any help.

UPDATE

I used Guid.NewGuid for the ProviderUserKey and it worked.

_provider.CreateUser(userName, password, email,null, null, true, Guid.NewGuid(), out status);

Thank you Daniel A. White for your help. The article link that you provided was what I needed to understand it.

link|improve this question

what is your membership provider? – Daniel A. White May 17 '11 at 13:56
It is the default membership provider, public abstract class MembershipProvider : ProviderBase – jamesamuir May 17 '11 at 13:57
What is in your web.config? – Daniel A. White May 17 '11 at 13:58
feedback

1 Answer

up vote 2 down vote accepted

Make sure you pass something to providerUserKey, not just false.

providerUserKey Type: System.Object The unique identifier from the membership data source for the user.

http://msdn.microsoft.com/en-us/library/system.web.security.membershipprovider.createuser.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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