如何从 DropDownList 中获取最后一个选项值?

发布于 2024-09-02 06:49:11 字数 196 浏览 1 评论 0原文

我有一个包含以下选项的 DropDownList

o select
1 hot
2 cold
3 warm

如何从 DropDownList 获取最后一个选项值(“warm”)?

I have a DropDownList with the following options:

o select
1 hot
2 cold
3 warm

How can I get the last option value ("warm") from the DropDownList?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

似狗非友 2024-09-09 06:49:11

假设您有一个引用 DropDownList 的变量:

if (myDropDownList.Items.Count > 0)
{
    string myValue = myDropDownList.Items[myDropDownList.Items.Count - 1].Value;
}

请注意,您应该首先检查 DropDownList 是否有项目,否则当列表为空时,这将引发 IndexOutOfBounds 异常。谢谢@Cylon。

Assuming that you have a variable referenced to your DropDownList:

if (myDropDownList.Items.Count > 0)
{
    string myValue = myDropDownList.Items[myDropDownList.Items.Count - 1].Value;
}

Note that you should probably check that the DropDownList has items first, or else this will throw an IndexOutOfBounds exception when the list is empty. Thanks @Cylon.

美人迟暮 2024-09-09 06:49:11
var last = cmbMyList.Items.OfType<ListItem>().LastOrDefault();

(感谢 Cylon Cat 纠正我)

非常简单

var last = cmbMyList.Items.OfType<ListItem>().LastOrDefault();

(Thanks to Cylon Cat for correcting me)

Very Simple

离线来电— 2024-09-09 06:49:11

像这样的东西
cboTemp.SelectedIndex = cboTemp.Items.Count -1;

Something like
cboTemp.SelectedIndex = cboTemp.Items.Count -1;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文