private void hyperlnkLblCtrlForgotPassword_Click(object sender, System.EventArgs e)
 {
     account.Username = username;
     try
     {
         dt = accountBLL.GetByUsername(account);
         if (dt.Rows.Count > 0)
         {
             accountBLL.SendMessage(account);
             XtraMessageBox.Show("Đã gửi thông báo quên mật khẩu cho quản trị viên", "Thông báo!",
                                 MessageBoxButtons.OK, MessageBoxIcon.Information);
         }
     }
     catch { }
     finally
     {
         account.Username = null;
         username         = null;
     }
 }