How to access the value of the dynamic textbox by its id?
I created more dynamic textbox using the below in loop
Dim tb As New TextBox
tb.ID = "txt_" + Str$(i)
and it assigned unique id.
then how to access each textbox value by its id without using javascript.
I created more dynamic textbox using the below in loop
Dim tb As New TextBox
tb.ID = "txt_" + Str$(i)
and it assigned unique id.
then how to access each textbox value by its id without using javascript.
Comment