Subscribe to web2feel.com
Subscribe to web2feel.com

private void _View _RowStyle(object sender, RowStyleEventArgs e)
        {
            var view = sender as GridView;
            if (e.RowHandle < 0) return;
            var str = view.GetRowCellDisplayText(e.RowHandle, view.Columns["last_login"]);
            if (!string.IsNullOrEmpty(str))
            {
               if (DateTime.Parse(str).ToString("yyyy-MM-dd") == DateTime.Now.ToString("yyyy-MM-dd"))
                {                  
                    e.Appearance.ForeColor = Color.Blue;
                }
            }
         
        }