裏面我有一個DataList和裏面我有一個DropDownList:如何找到下拉列表的控制DataList控件
<asp:DataList ID="dlconfigureItem" runat="server">
<ItemTemplate>
<asp:DropDownList CssClass="config-select" ID="ddlitem runat="server"></asp:DropDownList>
</ItemTemplate>
</asp:DataList>
我怎樣才能在服務器端的DropDownList的SelectedIndexChanged事件?我試過這個:
public void ddlitem_selectedindexchanged (object sender, EventArgs e)
{
}
但它不工作。
不知道這是一個O型,但你也失蹤關閉「在你的下拉列表中,你的ID爲 –