I would like to retrieve the values of my entries variables when I get a hit on the code
Protected Sub BtnShop_Click(sender As Object, e As EventArgs) Handles BtnShop.Click Dim Mycheck As String = "" ' NOTE: I start my trace on this statement For Each item As ListViewDataItem In ListView_Occasional.Items Dim cb As CheckBox = CType(item.FindControl("chk1"), CheckBox) If cb.Checked Then Mycheck = ddesc ' ddesc is a variable in my entry, Questions how do I get the variables values of my entries? End If Next End Sub

Go to the complete details ...