Associating multiple e-mail addresses with ASP.NET MembershipProvider accounts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:34:13Z http://stackoverflow.com/feeds/question/459722 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/459722/associating-multiple-e-mail-addresses-with-asp-net-membershipprovider-accounts 1 Associating multiple e-mail addresses with ASP.NET MembershipProvider accounts Chris Charabaruk 2009-01-20T00:22:23Z 2009-03-09T21:46:16Z <p>For a project I am currently working on, I am interested in allowing users to provide multiple e-mail addresses, both for contact purposes as well as providing address book-based social matching. I plan to write a custom membership provider (aspnet_Membership table is too heavy for my liking), but the MembershipProvider system only allows for one e-mail address per account.</p> <p>What would be the best idea for using the membership provider system but allow for multiple e-mail addresses per user? Or should I avoid MembershipProvider completely and roll my own system?</p> http://stackoverflow.com/questions/459722/associating-multiple-e-mail-addresses-with-asp-net-membershipprovider-accounts/459943#459943 3 Answer by Matt Peterson for Associating multiple e-mail addresses with ASP.NET MembershipProvider accounts Matt Peterson 2009-01-20T02:23:43Z 2009-01-20T02:23:43Z <p>You can certainly do this. In addition to writing a custom MembershipProvider class, you will need to create a derived class from <a href="http://msdn.microsoft.com/en-us/library/system.web.security.membershipuser.aspx" rel="nofollow">MembershipUser</a> to hold the additional e-mail address fields. Instructions on how to do this are <a href="http://msdn.microsoft.com/en-us/library/ms366730(VS.80).aspx" rel="nofollow">available here</a>.</p>