Hi, I have a problem whit this connection.
I first use this in web.config...

<connectionStrings>
    <clear/>
<add name="LocalSqlServer" connectionString="Integrated Security=SSPI;Persist Security Info=False;User ID=sa;Initial Catalog=hear;Data Source=(local)\SQLEXPRESS"/>
  </connectionStrings>
I use Web Configuration Tools (ASP.NET configuration) and enter a user to test and work OK.
Before, I add this lines to web.config.

<membership defaultProvider="AspNetSqlMembershipProvider">
          <providers>
            <remove name="AspNetSqlMembershipProvider"/>
            <add name="AspNetSqlMembershipProvider"
              type="System.Web.Security.SqlMembershipProvider"
              connectionStringName="LocalSqlServer"
              minRequiredPasswordLength="5"
              minRequiredNonalphanumericCharacters="0"
              passwordStrengthRegularExpression=""
          />
          </providers>
      </membership>

When I enter a new user, the WCT enter two, the same user...

Your have any suggestion?


Thank you.

Reply via email to