Click here to Skip to main content
15,918,808 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys.

Is there any way I can manage user information (Username, Password & Roles) without using the ASP.NET Membership framework. I mean (using aspnet_regsql)
Posted

1 solution

Yes, you can create your own implementation of the providers.

You'll obviously need to create a database to manage the users \ role\ user->role membership information. You'll then need to create implementations of the providers to use your particular database setup.

There are various articles on this if you google, here's a walkthrough

http://www.shiningstar.net/aspnet_articles/customprovider/CustomProvider.aspx[^]

...and an article on MSDN

http://msdn.microsoft.com/en-us/library/ms366730.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900