Exemple #1
0
 /// <summary>
 /// Initializes the data.
 /// </summary>
 protected override void InitData()
 {
     if (KeyValue != null)
     {
         _userProfilePresenter.Display(KeyValue);
         txtRePassword.Text = Password;
     }
 }
        /// <summary>
        /// Initializes the data.
        /// </summary>
        protected override void InitData()
        {
            if (KeyValue != null)
            {
                _userProfilePresenter.Display(KeyValue);
                txtRePassword.Text = Password;

                //// Tài khoản admin thì không cho sửa 1 số thông tin
                //if (this.UserName.Equals("admin"))
                //{
                //    txtUserProfileName.Enabled = false;
                //    txtPassword.Enabled = false;
                //    txtRePassword.Enabled = false;
                //    chkIsActive.Enabled = false;
                //}
            }
        }