我有两个下拉列表,第二个是根据第一个选定值填充的。这就是我填充第二个下拉列表的方式,但它并没有根据第一个选定的项目填写,这导致我改变我填写它的方式。
之前:
<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.
答案 0 :(得分:0)
尝试设置
DataMember as what you want