How to work with asp.net changepassword control. When I click the change password button it always gives an error:
Invalid password or new password is invalid. The minimum length of new password 7. You want to use non-alphanumeric characters: 1.
I type new password like "Changepassword123", but the error is still occuring.
The codebehind code is:
protected void changep1_ChangedPassword(object sender, EventArgs e)
{
Response.Write(changep1.CurrentPassword);
Response.Write(changep1.NewPassword);
}
Can someone provide the codebehind code to update user password? Thanks!