I am still learning on this ListView control. Isn't a way to get the value from a ListView label? I thought something like ListView1.Iems(n).Label("LabelID").text. I need to get value from a non selected row. I am just using that datakey atm.
Protected Sub ListView1_PreRender(sender As Object, e As EventArgs) Handles ListView1.PreRender
Dim i As String
i = ListView1.DataKeys(0).Value.ToString
End Sub
Go to the complete details ...