Tutorial by Examples

TextBox txt = (TextBox)FindControl(yourtxt_Id);
If the Control has rows. TextBox tb = GridView1.Rows[i].FindControl("TextBox1") as TextBox; Or if it has items. TextBox tb = Repeater1.Items[i].FindControl("TextBox1") as TextBox;

Page 1 of 1