Agribusiness.Web.Models.AccountMembershipService.ResetPasswordNoEmail C# (CSharp) Method

ResetPasswordNoEmail() public method

public ResetPasswordNoEmail ( string userName ) : string
userName string
return string
        public string ResetPasswordNoEmail(string userName)
        {
            try
            {
                var user = _provider.GetUser(userName, false);
                var newPassword = user.ResetPassword();

                return newPassword;
            }
            catch (Exception ex)
            {
                return string.Empty;
            }
        }