On the WebShop checkout page, I'm trying to get textbox values from a datalist to the code behind page. I can get evry other value except those from the datalist.
From checkout.aspx.
vb, in the Sub btnFinalize_Click section:
Dim theNotes As notes = New notes(notes.Text, DropDownList1.Text, lblPoNum.Text, TextBox3.Text)
notes.Text, DropDownList1.Text, lblPoNum.Text pull right from checkout.aspx.
TextBox3.text, however, does not and the only difference I can see is that it's in a datalist.
Any suggestions?