views:

10

answers:

1

Hi,

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..

+1  A: 

Nobody here will share commercial code with you.By knowing this fact,you should consider before asking your questions.

For your interest of membership,you should search for custom membership implementation

Have you checked MSDN documents?
I think they should be sufficient to understand easily with examples.
Implement a Custom Membership
Implementing a Membership Provider

Myra
Yep, those two documents pretty much cover everything you need to know. Depending on what data store you are using, you might want to consider inheriting from SqlMembershipProvider rather than the base MembershipProvider and just override the methods you need to change.
Zhaph - Ben Duguid