Have edited web.config but previously existing users now can't login?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • obiwanzamora
    New Member
    • Feb 2010
    • 1

    Have edited web.config but previously existing users now can't login?

    Hi,

    Have done some research on this forum I have worked out how to change the membership configuration settings in web.config to adjust the required password length and minimum number of non_alpha numeric characters.
    Code:
    <membership>
          <providers>
            <clear/>
            <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" requiresQuestionAndAnswer="false" requiresUniqueEmail="true" passwordFormat="Hashed" minRequiredNonalphanumericCharacters="0" minRequiredPasswordLength="4"/>
          </providers>
        </membership>
    This works perfectly when I create a new user and they can login fine. The problem I've got is all the users that were created before I edited web.config are no longer able to login? Any help would be much appreciated. Thanks.
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    I think we'll need to move this to IIS, it has nothing to do with classic ASP as far as I can tell.

    Jared

    Comment

    Working...