C#调用ItemDataBound中的编辑命令



我目前正在努力寻找需要在if语句中调用的代码,以便找到数据列表的编辑事件。

我正试图在现有下拉列表上创建一个空白下拉项。

任何帮助都会很棒!谢谢

protected void DL_Items_ItemDataBound(object sender, DataListItemEventArgs e)
{
    if ( )
    {
        DropDownList DDL_Designers = (DropDownList)e.Item.FindControl("DDL_Designers");
        DDL_Designers.Items.Insert(0, new ListItem("N/A", "0"));
    }
}

尝试if (e.Item.ItemType == ListItemType.EditItem)

if (e.Item.ItemType == ListItemType.EditItem)

相关内容

  • 没有找到相关文章

最新更新