For Each oItem As GridDataItem In RadGrid1.Items
'get items that are in bound columns
Dim strItemNumber As String = oItem("itemnmbr").Text
'get items that are in template columns
Dim strPONumber As String = CType(oItem.FindControl("lblPONumber"), Label).Text
Next