I'm trying to write a wizard step to create a user. It keeps telling me that i need a control to hold the security question/answer. I have requestQuestionAndAnswer="false" in the web.config though. Spinning my head on this one!
CreateUserWizard1: CreateUserWizardStep.ContentTemplate
does not contain an IEditableTextControl with ID Question for the
security question, this is required if your membership provider requires
a question and answer.
requiresQuestionAndAnswer="false" isn't working
I'm trying to write a wizard step to create a user. It keeps telling me that i need a control to hold the security question/answer. I have requestQuestionAndAnswer="false" in the web.config though. Spinning my head on this one!
Any ideas?
CreateUserWizard1: CreateUserWizardStep.ContentTemplate does not contain an IEditableTextControl with ID Question for the security question, this is required if your membership provider requires a question and answer.
<membership defaultProvider="UmbracoMembershipProvider" userIsOnlineTimeWindow="20">
<providers>
<clear />
<add name="UmbracoMembershipProvider" type="umbraco.providers.members.UmbracoMembershipProvider" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="false" defaultMemberTypeAlias="User" passwordFormat="Hashed" />
<add name="UsersMembershipProvider" type="umbraco.providers.UsersMembershipProvider" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="false" passwordFormat="Hashed" />
</providers>
</membership>
Woah, stupid mistake. I was working on a user control without this specified in the web.config.
Everything should work when I put this above code together.
darn...
is working on a reply...