Imar,
I hope you can help me. I'm desparate! I have an active site where I attached an sqlexpress database to mssql. Everything was working great. Now, all of a sudden one of my passwords seems to have locked and I don't know how to unlock it. My system has many users logging on with the same username and password. Today for the first time multiple users tried to logon at the same time and now the password won't work and I desparately need to reset it. I'm pasting my customized provider code from my web.config - I was under the impression I could have multiple users on the system at the same time with no problems? PLEASE HELP. AS ALWAYS, I GREATLY APPRECIATE YOUR TIME!
<providers>
<clear/>
<remove name="AspnetSqlMembershipProvider"/>
<add name="CustomizedProvider"
type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="LunchOrderConnectionString"
applicationName="/lunchorders"
minRequiredPasswordLength="5"
enablePasswordReset="true"
maxInvalidPasswordAttempts="25"
minRequiredNonalphanumericCharacters="0"
passwordStrengthRegularExpression=""
requiresUniqueEmail="false"
enablePasswordRetrieval="false"
requiresQuestionAndAnswer="false"/>
</providers>
THANKS!
|