gpt4 book ai didi

asp.net - 列表中的 DropDownList 项目

转载 作者:行者123 更新时间:2023-12-02 05:39:36 25 4
gpt4 key购买 nike

谁能告诉我在 List<string> 中添加所有下拉列表项的最短方法

我想填充 List<string>具有 DropDownList 的值

最佳答案

取决于您是否需要 ListItem 文本并且您是否能够利用 3.5

public static List<string> GetStrings(DropDownList dl)
{
return dl.Items.Cast<ListItem>().Select(i => i.Text).ToList();
}

关于asp.net - 列表中的 DropDownList 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1143130/

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