I have 35 textboxes with the names “t1” to “t35”. How would I call these names in a for loop? I have tried this with no luck:
[AS]for (i=1;i<=35;i++) {
(“t”+i).text = "Number " + i;
}
[/AS]
I know I’m doing something wrong with the (“t”+i) but I dont know how how to combine a string and number like that. Any help asap would be great. Thanks!