wackytacky99
wackytacky99

Reputation: 614

How to link membership provider with a database table?

Since the membership provider does not allow me to add additional fields for a new user like First Name, Last Name, etc, I want to store all that information into a seperate database table called Users. How do I link the membership provider with this table, so that when an Admin wants to manage users using a seperate webpage (not the buit-in membership provider page) it shows all the information in the membership provider plus the information in the database table?

Thanks

Upvotes: 0

Views: 1526

Answers (1)

Eranga
Eranga

Reputation: 32437

You would have to link with aspnet_Users table. This article has an overview of the membership provider tables.

Upvotes: 1

Related Questions