Click here to Skip to main content
15,888,202 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
I am implementing custom membership user. In which i want to do add my column to store additional information of a user into the membership table. I want to add my own columns into the membership columns

Any one plz help Thanks
Posted
Updated 7-Aug-12 2:10am
v2

1 solution

You can Add your column in database (e.g. aspnet_users table), modify stored procedures that affects to your modified table. That's all from DB.

Now in your aspnet project, Add a new class that extends from Membership or MembershipUser depends on your requirements. Add the property (column of your database) and that's all.

Hope it helps.
 
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