I have a gridview where I add textboxes to everycell on runtime. However, I can\'t seem to access those controls using findcontrol
findcontrol
Here is how I add the tex
Use FindControl within the Cell of the Row that you added the Control:
GridView1.Rows(0).Cells(cellindex).FindControl("txtSchedule" & cellindex.ToString)