Programmatically adding a Membership Provider - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T11:29:20Zhttp://stackoverflow.com/feeds/question/1432508http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1432508/programmatically-adding-a-membership-provider0Programmatically adding a Membership Providershaharmohttp://stackoverflow.com/users/506672009-09-16T11:55:12Z2009-09-17T07:01:37Z
<p>I have a .Net application that uses an arbitrary number of Membership providers. I will not go into the reasons, but I do not want these to be pre-configured, but I want to create and add them programmatically. Is there anyway to do this? I have no problem creating the providers, but Membership.Providers is readonly, so I can't add them.</p>
http://stackoverflow.com/questions/1432508/programmatically-adding-a-membership-provider/1437142#14371420Answer by Lex Li-MSFT for Programmatically adding a Membership ProviderLex Li-MSFThttp://stackoverflow.com/users/111822009-09-17T07:01:37Z2009-09-17T07:01:37Z<p>An easy hack is to create a custom membership provider (as wrapper) first and hook it in web.config. Then you implement this provider to be able to authenticate users against a list of real membership providers.</p>
<p>As the wrapper is owned by you, you are only limited by your imagination.</p>