62,271
社区成员
发帖
与我相关
我的任务
分享
foreach (RepeaterItem rs in Repeater1.Items)
{
string str = ((Label)rs.FindControl("控件ID")).Text;
}
for (int i = 0; i < Repeater1.Items.Count; i++)
{
string account = ((Label)Repeater1.Items[i].FindControl("Aindxid")).Text;
}