Programmatically adding a Membership Provider - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T11:29:20Z http://stackoverflow.com/feeds/question/1432508 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1432508/programmatically-adding-a-membership-provider 0 Programmatically adding a Membership Provider shaharmo http://stackoverflow.com/users/50667 2009-09-16T11:55:12Z 2009-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#1437142 0 Answer by Lex Li-MSFT for Programmatically adding a Membership Provider Lex Li-MSFT http://stackoverflow.com/users/11182 2009-09-17T07:01:37Z 2009-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>