D
Dave Petersen
I have 10 textboxes on my page, textbox1 - textbox10. Rather than modify
them individually, I would like to modify them with a variable something
like this:
for (int i = 0; i <= 10; i++)
{
textbox.text = "some text";
}
Is this possible? Would I need to create some kind of control array?
Thanks,
Dave
them individually, I would like to modify them with a variable something
like this:
for (int i = 0; i <= 10; i++)
{
textbox.text = "some text";
}
Is this possible? Would I need to create some kind of control array?
Thanks,
Dave