问题描述
大家好
这个下拉列表仍有问题。
基本上,我有4个。前2个工作很好,然后我的代码崩溃了
3rd。
ddlEndTimeHour.Items.FindByValue(endTime [0])。Selected = true;
其中endTime [0]是一个包含15的字符串。
我收到错误DropDownList不能选择多个项目。我知道
我没有在其他任何地方选择任何项目,虽然当我查看
生成的HTML时,第一项被标记为选中=已选择。我试过了
添加
ddlEndTimeHour.Items [0] .Selected = false;
但是没有帮助。
发生了什么事?!
干杯
Dan
Hi guys
Still having a problem with this dropdownlist.
Basically, I''ve got 4. The first 2 work fine, then my code crashes on the
3rd.
ddlEndTimeHour.Items.FindByValue(endTime[0]).Selected = true;
Where endTime[0] is a string containing "15".
I get the error "A DropDownList cannot have multiple items selected". I know
I''m not selecting any items anywhere else, although when I look at the
generated HTML, the first item is marked selected="selected". I''ve tried
adding
ddlEndTimeHour.Items[0].Selected = false;
but that hasnt helped.
What''s going on?!
Cheers
Dan
推荐答案
知道
尝试添加
ddlEndTimeHour.Items [0] .Selected = false;
发生了什么事?!
干杯
Dan
tried adding
ddlEndTimeHour.Items[0].Selected = false;
but that hasnt helped.
What''s going on?!
Cheers
Dan
这篇关于DropDownList.FindByValue.Selected不工作......帮忙!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!