tags:

views:

24

answers:

0

Hello,

I cannot display the Question Template on my page with the PasswordRecovery Control. I only get the UserName View.

Can anyone tell me what I am doing wrong?

I have added many users, but only a few have a queston and answer right now because they are imported from an older system.

Any help would be greatly appreciated.

I have this in my web.config:

<membership defaultProvider="MyProvider">
<providers>
    <clear/>
    <remove name="AspNetSqlMembershipProvider"/>
    <add name="MyProvider" 
             connectionStringName="LocalSqlServer" 
             type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 
             enablePasswordRetrieval="true" 
             enablePasswordReset="true" 
             requiresQuestionAndAnswer="true" 
             applicationName="/" 
             requiresUniqueEmail="false" 
             passwordFormat="Clear" 
             maxInvalidPasswordAttempts="5" 
             minRequiredPasswordLength="1" 
             minRequiredNonalphanumericCharacters="0" 
             passwordAttemptWindow="10" 
             passwordStrengthRegularExpression="" />
</providers>