Private Sub myGridView_RowDataBound(sender As Object, e As GridViewRowEventArgs)
Dim lblCustomerID As Label = CType(e.Row.FindControl("lblCustomerID"),Label)
Dim lblName As Label = CType(e.Row.FindControl("lblName"),Label)
IF Not IsNothing(lblCustomerID) AND Not IsNothing(lblName) Then
IF CDbl(lblCustomerID.Text) >= CDbl(lblName.Text) Then
End IF
End IF
End Sub