I
iHavAQuestion
I have a textbox control in each row of the table and I need to display it
dynamically
In the first row of the table it is txtSample1 and in the second row it is
txtSample2
The below code is not working
for (int i = 0; i < ddlHowMany.SelectedIndex ; i++)
{
UserTable.Rows.FindControl("(txtSample)+(i)").Visible = true;
}
Plz help me out..
dynamically
In the first row of the table it is txtSample1 and in the second row it is
txtSample2
The below code is not working
for (int i = 0; i < ddlHowMany.SelectedIndex ; i++)
{
UserTable.Rows.FindControl("(txtSample)+(i)").Visible = true;
}
Plz help me out..