本文介绍了Asp.net - 在下拉列表顶部添加空白项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么下拉菜单没有先显示我的空白项目?这是我所拥有的
Why is the dropdown not showing my blank item first? Here is what I have
drpList.Items.Add(New ListItem("", ""))
With drpList
.DataSource = myController.GetList(userid)
.DataTextField = "Name"
.DataValueField = "ID"
.DataBind()
End With
编辑~我正在绑定一个通用列表,这可能是罪魁祸首吗?
Edit ~ I am binding to a Generig List, could this be the culprit?
推荐答案
在你的数据绑定之后:
drpList.Items.Insert(0, new ListItem(String.Empty, String.Empty));
drpList.SelectedIndex = 0;
这篇关于Asp.net - 在下拉列表顶部添加空白项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!