I needed to access columns from the row being bound in order to populate a nested listview. I went to this link (http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.listview.itemdatabound(v=vs.110).aspx) to
read about the ItemDataBound event. Under the "Examples" section (for VB) this code is listed:
Protected Sub ContactsListView_ItemDataBound(ByVal sender As Object, _
ByVal e As ListViewItemEventArgs)
If e.Item.ItemType = ListViewItemType.DataItem Then
' Display the e-mail address in italics.
Dim EmailAddressLabel As Label = _
CType(e.Item.Find ...
Go to the complete details ...