up vote 4 down vote favorite
3
share [g+] share [fb]

I'm looking for some examples for asp.net mvc that use the integrated asp.net forms-authentication based membership providers with edit and post scenarios. I'm looking for best practices here.

Let's say I have a Contacts table in my database with a Name field, and a UserId field which is tied to the aspnet_Users UserId field. I thought of something like this:

public ActionResult Save([Bind(Include="Name")] Contact contact)
{
       // if null etc. checks omitted for this example
       MembershipUser currentUser = Provider.GetUser(User.Identity.Name, true);
       contact.UserId = (Guid)currentUser.ProviderUserKey;
       //save etc.
}

Any tips or guides to this one?

link|improve this question

68% accept rate
feedback

1 Answer

Umm.. I havent gone into the details of it yet... but, could this help?

link|improve this answer
The link doesn't work with a "404 Not Found" – mouters Aug 10 '11 at 22:13
feedback

Your Answer

 
or
required, but never shown

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