如何绑定sql server 2008中的组合框值

时间:2013-12-08 15:58:52

标签: c# asp.net

下面的表格中的代码绑定数据,但我需要第一项必须“选择”我正在使用网页表单我是如何做到的

{
    comboBox_city.DataSource = obj_dt;
    comboBox_city.ValueMember = "City_Name";
}

4 个答案:

答案 0 :(得分:0)

如果是ASP.Net,那么你应该使用

private void BindCombo()
{
  var dt = SomeMethodReturningData();
  comboBox_city.DataSource = dt;
  comboBox_city.DataValueField ="State_Code"; //assume
  comboBox_city.DataTextField= "State_Name"
  comboBox_city.DataBind();
  comboBox_city.Items.Insert(0,new ListItem("---Select---","-1"));
}

答案 1 :(得分:0)

试试这个,

comboBox_city.Items.Insert(0,new ListItem("---Select---",""));

答案 2 :(得分:0)

comboBox_city.Items.Insert(0,"---Select---");

答案 3 :(得分:0)

您可以使用智能标记或项目属性手动插入项目。然后将AppendDataBoundItems属性设置为true。