gpt4 book ai didi

c# - 使用 foreach 获取 Repeater 数据

转载 作者:行者123 更新时间:2023-12-02 17:50:35 25 4
gpt4 key购买 nike

我的页面中有一个 Repeater,在数据绑定(bind)之后,我必须单击一个按钮以在页面中回发,并且我需要对来 self 的 Repeater 的所有数据执行 foreach。实际上,我必须以 foreach 语句中的每个项目为例。

foreach (RepeaterItem itemEquipment in rptSpecialEquipments.Items)
{
// Get Data From My Repeater
}

最好的问候,

米尔顿·卡马拉·戈麦斯

最佳答案

这是你想要的吗?

    foreach (RepeaterItem itemEquipment in rptSpecialEquipments.Items)
{
//to get the dropdown of each line
DropDownList yourDropDown = (DropDownList)item.FindControl("the name of your dropdown control here");

//to get the selected value of your dropdownlist
string value = yourDropDown.SelectedValue;
}

关于c# - 使用 foreach 获取 Repeater 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8915758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com