Something is missing with my ASP .NET Web Site Administration Tool, I don't see the "Security Question" nor the "Security Answer".
According to "Walkthrough: Using Authentication Service with Silverlight Business Application" (http://msdn.microsoft.com/en-us/library/ee942449(v=vs.91).aspx), this is what I should see when creating a new user:
But this is what I see instead:
The "Security Question" and the "Security Answer" are missing. What could I have not installed?, I'm using Visual Studio 2012.
For those interested you have to make Custom Membership Provider Setting, like:
<membership
defaultProvider="SqlProvider"
userIsOnlineTimeWindow="20">
<providers>
<clear/>
<add name="SqlProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="LocalSqlServer"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
requiresUniqueEmail="false"
maxInvalidPasswordAttempts="5"
passwordAttemptWindow="10"
passwordFormat="Hashed"
minRequiredPasswordLength="7"
enablePasswordRetrieval="false"
applicationName="/" />
</providers>
</membership>
in the web.config file. Notice the requiresQuestionAndAnswer="true" setting.