ex: label[i].text. in
int r = GridView1.Rows.Count;
for (int i = 0; i < r; i++)
{
Label[i]+"1".text="something";
}
Here, in one for cycle, I want to fill different labels. Label id’s are Label01, Label02,Label03 and so on. What is the correct syntax?
THIS should solve your problem