protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
   if (e.Row.RowType == DataControlRowType.DataRow)
   {
      TableCell cell = e.Row.Cells[4];
      if (cell.Text.ToUpper() == "OWNER")
      {
         cell.ForeColor = System.Drawing.Color.Red;
      }    // Koniec bloku if OWNER.
   }       // Koniec bloku if DataRow.
}          // Koniec metody GridView1_RowDataBound.
