In my asp.net Web app. I have a change password form that is not working properly. I set the LoginEvent cancel to false when it has changed. It changes ok, but the control thinks that it fails. Is there something else I need to do?

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`
link|improve this question

57% accept rate
Wrote it myslef instead of using memebership. – user516883 Sep 15 '11 at 4:30
feedback

1 Answer

Hm...the code doesn't helps:P What "UpdateUserPassword" Returns? suppose bool.

One hint... C# is OOP:P

Are you comming from php?

link|improve this answer
Yes it returns a bool, and no I am not coming from php. I have never used this control before and I am looking at examples and following every step. If that event is not canceled it suppose to be successful but its not either way. I even set the property in the membership in web config file – user516883 Sep 15 '11 at 3:42
Have you add a break point to the source to see the returned values? – Sanosay Sep 15 '11 at 3:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.