私のasp.net Webアプリケーションで。私は正しく動作していないパスワード変更フォームを持っています。変更されたときにLoginEventキャンセルをfalseに設定しました。それはOKに変わりますが、コントロールは失敗したと考えます。私は何か他に何かする必要がありますか?Asp.netパスワード管理の変更
control.Objects.User user = GlobalClass.GlobalVariables.User;
string currentRealPassword = control.Data.Users.GetUserPassword(user);
if (user != null && ChangeUserPassword.CurrentPassword.Trim() == currentRealPassword)
{
e.Cancel = !control.Data.Users.UpdateUserPassword(user, ChangeUserPassword.NewPassword);
}`enter code here`
memebershipの代わりにmyslefを書きました。 – user516883