If I have 3 text boxes with ids of txtBox1, txtBox2, txtBox3, how does one reference them for the text values?
Dim varStart as integer=1
Dim varEnd as integer=3
Dim myUID As TextBox
for i = varStart to varEnd
myUID.ID = ("txtUID" & i.ToString)
If (Trim(CType(myU ID, TextBox).Text) <> "") then
do something
End if
next
Dim varStart as integer=1
Dim varEnd as integer=3
Dim myUID As TextBox
for i = varStart to varEnd
myUID.ID = ("txtUID" & i.ToString)
If (Trim(CType(myU ID, TextBox).Text) <> "") then
do something
End if
next
Comment