hi frens,
actually i have to create textbox dynamically and then accept user input.
for (int i = 0; i < no_towers; i++)
{
string name= "t"+i.ToString();
TextBox t = new TextBox();
t.Name = name;
}
now what i have to do is get the user input from these textboxes and save to database.
how can i get the values in the textboxes.
when i tried to use
for (int i = 0; i < no_towers; i++)
{
string name= "t"+i.ToString();
string name[i]= name.text.ToString();
}
i failed .
please help me .
Thanks
Radhika