1

如何获得with中的DropDownList值的最大值?ASP.NETC#

有什么方法还是我应该手动获取?

4

2 回答 2

5

int maxValue = DropDownList1.Items.Cast<ListItem>().Select(item => int.Parse(item.Value)).Max();

于 2012-04-09T08:02:34.550 回答
1
DropDownList1.Items.Cast<ListItem>().Max(j => j.Value) // For string comparison

或者,

DropDownList1.Items.Cast<ListItem>().Max(j => int.Parse(j.Value)) // If you want max int
于 2012-04-09T08:09:05.387 回答