62,272
社区成员
发帖
与我相关
我的任务
分享
for (int i = 0; i < Repeater1.Items.Count; i++)
{
DropDownList d = Repeater1.Items[i].FindControl("DropDownList1") as DropDownList;
if (d.SelectedValue != "0")
{
//this is your code
}
}