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;