From: Markus O. <ma...@gm...> - 2013-03-04 09:30:20
|
I managed to write my own membership provider, turns out it wasn't hard after all -- I just had to find the relevant information out of everything that's out there :) In case anyone else needs this information: I created a new class extending ExtendedMembershipProvider, I implemented the methods similar to this example: http://msdn.microsoft.com/en-us/library/6tc47t75(v=vs.100).aspx For a minimal membership provider it's sufficient to only implement a few methods: ValidateUser, CreateUser, GetUser and the properties MinRequiredPasswordLength, RequiresUniqueEmail. http://www.codeproject.com/Articles/165159/Custom-Membership-Providers Regards, Markus |