Search code examples
asp.netmembership-provider

membership provider


I am a new guy in Asp.net. I have one requirement of doing one asp.net application with Custom Membership provider. If you any source code of the same, please share with me. I searched alots in net. but i couldnt understand completely yet. Please help me..


Solution

  • I have created a Membership, Role, and Profile providers for MongoDB (mongodb.org).

    The source code is here:

    https://github.com/agarcian/MongoDBASPNetProviders

    I used http://msdn.microsoft.com/en-us/library/ms366730.aspx (referenced in the accepted answer) as the basis for my code.

    I have found that the Membership provider is most useful when coupled with the Profile provider, and sometimes with the Role provider.