just a learner
just a learner

Reputation: 57

User registration and authentication in asp .net

I have created table "users" in database. I have to register user and authenticate him. I want to use asp .net create wizard and login control but i don't know how to register user in my own database using these controls. i don't want to create ASPNETDB.MDF. Any help would be appreciated.

Upvotes: 0

Views: 920

Answers (1)

Soroush Mirzaei
Soroush Mirzaei

Reputation: 926

You can use custom membership provider to achieve this.

Similar question: Custom MembershipProvider in .NET 4.0

Another sample: http://www.codeproject.com/Articles/165159/Custom-Membership-Providers

MSDN docs on membership provider: http://msdn.microsoft.com/en-us/library/f1kyba5e(v=vs.100).aspx

hope this helps!

Upvotes: 1

Related Questions