This blog will show how to loop (iterate) through a Component Art grid
foreach(GridItem item in Grid1.Items)
{
Response.Write(item["ID"] + ": " + item["FullName"] + "<br />\n");
}
Dim griditem As ComponentArt.Web.UI.GridItem
For Each griditem In Me.gridex1.Items
'code here
'find an item in a server template
chkSelect = CType(Grid1.FindControl(0, 0, griditem, "chkSelect"), CheckBox)
'get a reference to a grid field
intLineItemSeq = griditem("lnitmseq")
Next