Associating multiple e-mail addresses with ASP.NET MembershipProvider accounts - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T00:34:13Zhttp://stackoverflow.com/feeds/question/459722http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/459722/associating-multiple-e-mail-addresses-with-asp-net-membershipprovider-accounts1Associating multiple e-mail addresses with ASP.NET MembershipProvider accountsChris Charabaruk2009-01-20T00:22:23Z2009-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#4599433Answer by Matt Peterson for Associating multiple e-mail addresses with ASP.NET MembershipProvider accountsMatt Peterson2009-01-20T02:23:43Z2009-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>