I code in C# (ASP.NET) and am using Forms authentication. I would like to know which is the best method to change a user password without using the asp:ChangePassword c
Got it solved. Thanks to my fellow developer.
var myUser = Membership.GetUser(userID); bool isChangeSuccess = myUser.ChangePassword( myUser.ResetPassword(), ActivateUserPasswordText.Text.Trim());
Cant say I liked it much though. I thought ResetPassword() would be returning a bool.