基于另一个下拉列表ID填充下拉列表时出错

本文关键字:下拉列表 出错 填充 ID 另一个 | 更新日期: 2023-09-27 18:25:13

我有两个下拉列表,第二个是根据第一个的选定值填充的。这就是我填充第二个下拉列表的方式,但它不是根据第一个下拉列表中所选的项目来填充的,这导致我改变了填充方式。

之前:

<asp:DropDownList ID="RootDropDown" runat="server" AutoPostBack="True" DataSourceID="FirstChild" DataTextField="DisplayName" DataValueField="ID"></asp:DropDownList>
        <asp:SqlDataSource ID="FirstChild" runat="server" ConnectionString="<%$ ConnectionStrings:MyConnection %>" SelectCommand="SELECT e.DisplayName,  e.ID , e.GUID
FROM SomeTable e
INNER JOIN TabletoTableMap em
ON e.ID = em.OtherTableID
WHERE em.SomeTableID = 9"+ ></asp:SqlDataSource>

之后:

<asp:DropDownList ID="RootDropDown" runat="server" AutoPostBack="True" DataSourceID="FirstChild" DataTextField="DisplayName" DataValueField="ID" OnSelectedIndexChanged="Child"></asp:DropDownList>

子方法:

protected void Child(object sender, EventArgs e)
    {
        String strConnection = "Data Source=.;Initial Catalog=ALE;Integrated Security=True";
        int RootID = Convert.ToInt32(CourseDropDown.SelectedValue);
        System.Data.SqlClient.SqlConnection con = new System.Data.SqlClient.SqlConnection(strConnection);
        con.Open();
        System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand("SELECT e.DisplayName,  e.ID , e.GUID FROM SomeTable e INNER JOIN TabletoTableMap em ON e.ID = em.OtherTableID WHERE em.SomeTableID="+RootID, con);
        System.Data.SqlClient.SqlDataAdapter da = new System.Data.SqlClient.SqlDataAdapter(cmd);
        System.Data.DataSet ds = new System.Data.DataSet();
        da.Fill(ds);
        con.Close();
        RootElementDropDown.DataSourceID = "FirstChild";
        RootElementDropDown.DataTextField = "DisplayName";
        RootElementDropDown.DataValueField = "ID";
        RootElementDropDown.DataBind();
    }

错误:

The DataSourceID of 'RootDropDown' must be the ID of a control of type IDataSource.  A control with ID 'FirstChild' could not be found.

基于另一个下拉列表ID填充下拉列表时出错

尝试设置

DataMember as what you want