public ActionResult ChangePwd(string oldPwd, string newPwd) { var userId = OperatorProvider.Provider.GetCurrent().UserId; if (userApp.EqualOldPwd(oldPwd, userId)) { if (userApp.ChangePwd(newPwd, userId)) { return(Success("修改成功!")); } return(Error("修改失败!")); } else { return(Error("旧密码错误!")); } }
public ActionResult ChangePwd(string username, string oldpassword, string newpassword) { userApp.ChangePwd(username, oldpassword, newpassword); return(Success("密码修改成功。")); }