我正在尝试使用 Datalist OnItemDataBound 获取 Dropdownlist 选定值。
DlSubjects 是主 DataList,dlTests 是嵌套 DataList。下拉列表包含在 dlSubjects 中。
我的代码:
protected void dlSubjects_ItemDataBound(object sender, DataListItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
DataList dlTests = e.Item.FindControl("dlTests") as DataList;
DropDownList drpTopic = e.Item.FindControl("drpTopic") as DropDownList;
string Value = drpTopic.SelectedValue;
}
}
谁能帮我解决这个问题???