Randy,
Something like this should work for you.
Jared
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
If Not e.Item.DataItem Is Nothing Then
If e.Item.ItemType = ListItemType.AlternatingItem Or
ListItemType.Item Or ListItemType.SelectedItem Then
Dim Item As DataGridItem = CType(e.Item, DataGridItem)
Item.BackColor =
Color.FromName(DataBinder.GetPropertyValue(e.Item.DataItem,
"FieldContainingColorName"))
End If
End If
End Sub
> What I am trying to do is Change the color of a row from a value that is
> in
[quoted text clipped - 14 lines]
>
> Randy