This blog will show how to loop 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
Next