If there any solution on how to choose specific column..what is the code??
i'm using VB.Net
If e.Row.RowType = DataControlRowType.DataRow Then
Dim CellValue As Decimal = Convert.ToDecimal(e.Row.Cells(4).Text)
If CellValue < 5.0 Then
e.Row.Cells(4).BackColor = Drawing.Color.Orange
End If
End If