dropdownlist无法识别列表项

本文关键字:列表 识别 dropdownlist | 更新日期: 2023-09-27 18:29:58

我有一个下拉列表,其填充由下面显示的函数完成-:

public void filldropdown()
{
    MySqlConnection conn = new MySqlConnection(connectionString);
    conn.Open();
    string query = "select * from category";
    MySqlCommand cmd = new MySqlCommand(query,conn);
    MySqlDataReader dr = cmd.ExecuteReader();
    if(dr.HasRows)
    {
        DropDownList1.Items.Add(new ListItem("---select---","null"));
        while(dr.Read())
        {
            DropDownList1.DataSource = dr;
            DropDownList1.DataTextField = "name";
            DropDownList1.DataValueField = "id";
            DropDownList1.DataBind();
        }
    }
    conn.Close();
}

aspx中的下拉列表是-:

<asp:DropDownList OnSelectedIndexChanged="showlabel" AutoPostBack="true"    ID="DropDownList1" runat="server">
        <asp:ListItem Text="---select---" Value="null"></asp:ListItem>
    </asp:DropDownList>

我只是不知道第一个项目是怎么从数据库中来的,而不是"---选择---"

感谢您的时间。

dropdownlist无法识别列表项

您需要将DropdownList的AppendDataBoundItems属性设置为true。否则,数据绑定将清除现有值。

您已经更改了数据源:

        DropDownList1.DataSource = dr;
        DropDownList1.DataTextField = "name";
        DropDownList1.DataValueField = "id";
        DropDownList1.DataBind();

当您将DataSource更改为dr时,它将擦除您当前的---select---项(如预期)。

您需要在绑定DataSource之后添加它。

 DropDownList1.Items.Insert(0, new ListItem("---- select ----", 0));
 DropDownList1.SelectedIndex = 0;

试试这个

    public void filldropdown()
    {
        MySqlConnection conn = new MySqlConnection(connectionString);
        conn.Open();
        string query = "select * from category";
        MySqlCommand cmd = new MySqlCommand(query, conn);
        MySqlDataAdapter da = new MySqlDataAdapter(cmd);
        DataSet ds=new DataSet();
        da.Fill(ds);
        DropDownList DropDownList1 = new DropDownList();
        DropDownList1.DataSource = ds;
        DropDownList1.DataTextField = "name";
        DropDownList1.DataValueField = "id";
        DropDownList1.DataBind();
        DropDownList1.Items.Insert(0,new ListItem("---select---", "null"));
        conn.Close();
    }

有一些方法可以将项添加到数据绑定下拉列表中,就像我使用Insert一样,它指定插入的位置(在哪个位置)。

DropDownList1.Items.Insert(1, "-- Select --");