2 things. Find or add the connectionStringName property to your membership configuration.
Here is an example that uses it
<system.web> ... <membership defaultProvider="MembershipADProvider"> <providers> <add name="MembershipADProvider" type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="YOUR CONN STRING" connectionUsername="<domainName>\administrator" connectionPassword="password"/> </providers> </membership> ... </system.web>
And you need to configure the connection of course
<connectionStrings> <add name="YOUR CONN STRING" connectionString= "[ANY ConnectionSTRIN]" /> </connectionStrings>
brian chandley
source share