SqlMembershipProvider.RequiresQuestionAndAnswer Property (System.Web.Security)

Switch View :
ScriptFree
.NET Framework Class Library
SqlMembershipProvider.RequiresQuestionAndAnswer Property

Gets a value indicating whether the SQL Server membership provider is configured to require the user to answer a password question for password reset and retrieval.

Namespace:  System.Web.Security
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic
Public Overrides ReadOnly Property RequiresQuestionAndAnswer As Boolean
	Get
C#
public override bool RequiresQuestionAndAnswer { get; }
Visual C++
public:
virtual property bool RequiresQuestionAndAnswer {
	bool get () override;
}
F#
abstract RequiresQuestionAndAnswer : bool
override RequiresQuestionAndAnswer : bool

Property Value

Type: System.Boolean
true if a password answer is required for password reset and retrieval; otherwise, false. The default is true.
Remarks

Requiring a password question and answer provides an additional layer of security when retrieving or resetting a user's password. When creating a user name, a user can supply a question and answer that can later be used to retrieve or reset a forgotten password. If the EnablePasswordReset property and the EnablePasswordRetrieval property are both false, the value of the RequiresQuestionAndAnswer property is irrelevant.

For more information, see ResetPassword and GetPassword.

Examples

The following code example shows the membership element in the system.web section of the Web.config file for an ASP.NET application. It specifies the application's SqlMembershipProvider instance and configures it to require a password answer for password reset or retrieval.

<membership defaultProvider="SqlProvider" userIsOnlineTimeWindow="20">
  <providers>
    <add name="SqlProvider"
      type="System.Web.Security.SqlMembershipProvider"
      connectionStringName="SqlServices"
      enablePasswordRetrieval="false"
      enablePasswordReset="true"
      requiresQuestionAndAnswer="true"
      passwordFormat="Hashed"
      applicationName="MyApplication" />
  </providers>
</membership>
Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources