adding additional fields (ASP.NET membership)

  • Thread starter Thread starter mazdotnet
  • Start date Start date
M

mazdotnet

Hi guys,

I've just started using ASP.NET's membership feature and it all seems
pretty good. However, I need to have additional fields such as
Address, Postal Code, Country, State, City...etc... stored in another
table. The rows can potentially be over 1000000 rows. What's is the
best way to do this? Do I run Membership.CreateUser and then take the
User ID and store that in another table? Is there a better way?
(must
be in another table)


Thank you
M.
 
Since you are writing the implementation of the static methods in the
Membership class to interact with your database, your Member class and your
database can have any structure you want.

--
HTH,

Kevin Spencer
Microsoft MVP

DSI PrintManager, Miradyne Component Libraries:
http://www.miradyne.net
 
Back
Top