0

我在数据列表中使用下拉列表。现在,我想要下拉选择的值 onDatalistItemBound。

怎么获得???

4

1 回答 1

0

您的 ItemDataBound 处理程序应如下所示:

protected void dl_ItemDataBound(object sender, DataListItemEventArgs e)
{
    if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
    {
        var myDropDownList = e.Item.FindControl("YourDropDownListID") as DropDownList;
        int currentItemID = int.Parse(this.dl.DataKeys[e.Item.ItemIndex].ToString());

        myDropDownList.DataSource = GetDDLDataSource(currentItemID);
        myDropDownList.DataBind();
    }
}
于 2013-10-28T08:07:20.877 回答