目前,我有以下内容:
SqlDataSource
的{{1}}(配置为从SQL Server 2008中的表中检索数据)SqlDataSourceVenue
的ListBox(也可以使用ListBoxVenue
配置使用SqlDataSourceVenue
,如插图A所示Choose Data Source
选项下的项目插入ListBox的代码(代码A)。插图A
代码A
DataBound
插图B
目前的问题是新项 protected void BoundedItemsVenue(object sender, EventArgs e)
{
ListBoxVenue.Items.Add("{BLANK}");
}
将始终作为ListBox的最后一个条目。
是否可以将我的新项目显示或放置为我的列表框中的第一个条目,并且还可以选择该新项目?
答案 0 :(得分:3)
ListBoxVenue.Items.Insert(0, new ListItem("","{BLANK}"));
ListBoxVenue.SelectedIndex = 0;
答案 1 :(得分:1)
你可以用
做到这一点ListBoxVenue.Items.Insert(0, new ListItem("","{BLANK}"));