Example #1
0
 public void LoadCurrentInformation(SPKTCore.Core.Domain.Account account)
 {
     lblUserName.Text      = account.UserName;
     lblOldTenHienThi.Text = account.DisplayName;
     txtTenHienThi.Text    = account.DisplayName;
     lblEmail.Text         = account.Email;
     //txtDisplayName.Text = account.UserName;
     //txtEmail.Text = account.Email;
 }
Example #2
0
        public void LoadCurrentInformation(SPKTCore.Core.Domain.Account account)
        {
            lblUserName.Text      = account.UserName;
            lblOldTenHienThi.Text = account.DisplayName;
            txtTenHienThi.Text    = account.DisplayName;
            lblEmail.Text         = account.Email;

            if (account.UseAuthenticationService != null && ((bool)account.UseAuthenticationService))
            {
                rdbUseDKMH.Checked = true;
            }
            else
            {
                rdbUseMXH.Checked = true;
            }
            //txtEmail.Text = account.Email;
        }