在 GridView Repeater ListView 等中查找控件
如果 Control 有行。
TextBox tb = GridView1.Rows[i].FindControl("TextBox1") as TextBox;
或者如果它有物品。
TextBox tb = Repeater1.Items[i].FindControl("TextBox1") as TextBox;
如果 Control 有行。
TextBox tb = GridView1.Rows[i].FindControl("TextBox1") as TextBox;
或者如果它有物品。
TextBox tb = Repeater1.Items[i].FindControl("TextBox1") as TextBox;