On a WinForm project with Membership Provider (with SQL-Server configured on app.config)
When I debug this for first time:
Provider.Membership.CreateUser(username, password, null, null, null, true, UserId, out status);
I get an exception:
The membership provider name specified is invalid. Parameter name: providerName
But if I go back to the same line and try again it works great ¿¿¿???
Any idea?
This is my app.config
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="connectionStrings" type="System.Configuration.ConnectionStringsSection, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" requirePermission="false"/>
</configSections>
<connectionStrings>
<add name="ApplicationServices" connectionString="Data Source=.\sqlexpress;Initial Catalog=mmtest;Integrated Security=True;MultipleActiveResultSets=True" />
</connectionStrings>
<system.web>
<membership>
<providers>
<clear/>
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="2147483647" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/"/>
</providers>
</membership>
<profile>
<providers>
<clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
</providers>
</profile>
<roleManager enabled="true">
<providers>
<clear/>
<add connectionStringName="ApplicationServices" applicationName="/" name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider"/>
<add applicationName="/" name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider"/>
</providers>
</roleManager>
</system.web>
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration>