If i have multiple textboxes with the same Id and name in a form, how to fetch there values separately in vb.net? can anyone help me? thanks in advance.
in javascript iv used fetched them like this
var b=document.getElementById('TextBox')
var a=b.length;
for(var i=0; i<a; i++) {
var text=b[i];
alert(text)
}
Here is an example for vb.net
in your case something like this assuming your textboxes ids are like txtTestTxt0, txtTestTxt1,txtTestTxt2 and so on