CandorMvcApplication.Controllers.AccountController.ChangePassword C# (CSharp) Method

ChangePassword() public method

public ChangePassword ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public virtual ActionResult ChangePassword()
        {
            var model = new ChangePasswordViewModel
            {
                UserName = SecurityContextManager.CurrentIdentity.Name
            };
            return View(model);
        }

Same methods

AccountController::ChangePassword ( ChangePasswordViewModel model ) : System.Web.Mvc.ActionResult