DropDownList默认选中
Posted 茶树
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DropDownList默认选中相关的知识,希望对你有一定的参考价值。
一、DropDownList默认选中
开始的笨方法:
foreach (ListItem item in DropDownList1.Items)
{
if (pet.Category == item.Text)
{
item.Selected = true;
break;
}
}
师傅指点后--》进化版: this.DropDownList1.Items.FindByText(pet.Sex).Selected = true;
以上是关于DropDownList默认选中的主要内容,如果未能解决你的问题,请参考以下文章
多次点击Button后DropDownList选中的值变为默认值?