Esempio n. 1
0
    public string Reset_Passwd(string user_code, string password, bool reset)
    {
        int user_Id = int.Parse(user_code);

        password = EncryptString(password);
        data_file.ResetPassword(user_Id, password, reset);
        return("RESET");
    }