S Sunfire Nov 10, 2007 #1 How do you make it so the aspnet.mdf file doesnt get created even though I created a custom provider?
How do you make it so the aspnet.mdf file doesnt get created even though I created a custom provider?
R Roland Dick Nov 10, 2007 #2 Hi sunfire, How do you make it so the aspnet.mdf file doesnt get created even though I created a custom provider? Click to expand... did you add a <clear/> to your web.config and set your provider as defaultProvider like this: <membership defaultProvider="myProvider"> <providers> <clear/> <add name="myProvider" (your membership provider)> </providers> </membership> If you're using roleManager, add the clear to the provider list as well. Hope this helps, Roland
Hi sunfire, How do you make it so the aspnet.mdf file doesnt get created even though I created a custom provider? Click to expand... did you add a <clear/> to your web.config and set your provider as defaultProvider like this: <membership defaultProvider="myProvider"> <providers> <clear/> <add name="myProvider" (your membership provider)> </providers> </membership> If you're using roleManager, add the clear to the provider list as well. Hope this helps, Roland