แนะนำ Template Field และการ FindControl ใน RowDataBound ครับ
Code (VB.NET)
'*** Status ***'
Dim lblStatus As Label = CType(e.Row.FindControl("lblStatus"),Label)
IF Not IsNothing(lblStatus) Then
IF e.Row.DataItem("CustomerID") = "FAIL" Then
lblCustomerID.Text = "PENDING"
End IF
End IF