or


Protected Sub RadGrid1_ItemDataBound(sender As Object, e As GridItemEventArgs) If TypeOf e.Item Is GridDataItem Then Dim dataItem As GridDataItem = TryCast(e.Item, GridDataItem) Dim myCell As TableCell = dataItem("FormularUrl") myCell.ForeColor = Color.Red End IfEnd Sub