MembershipProvider::ChangePasswordQuestionAndAnswer Method (String^, String^, String^, String^)
.NET Framework (current version)
Processes a request to update the password question and answer for a membership user.
Assembly: System.Web.ApplicationServices (in System.Web.ApplicationServices.dll)
public: virtual bool ChangePasswordQuestionAndAnswer( String^ username, String^ password, String^ newPasswordQuestion, String^ newPasswordAnswer ) abstract
Parameters
- username
-
Type:
System::String^
The user to change the password question and answer for.
- password
-
Type:
System::String^
The password for the specified user.
- newPasswordQuestion
-
Type:
System::String^
The new password question for the specified user.
- newPasswordAnswer
-
Type:
System::String^
The new password answer for the specified user.
Return Value
Type: System::Booleantrue if the password question and answer are updated successfully; otherwise, false.
Takes, as input, a user name, a password, a password question and a password answer, and updates the password question and answer in the data source if the supplied user name and password are valid.
If the supplied user name and password are not valid, false is returned.
For an example of a MembershipProvider implementation, see Implementing a Profile Provider.
.NET Framework
Available since 2.0
Available since 2.0
Show: