C# 在 ItemDataBound 中调用编辑命令

发布于 2024-11-11 16:00:05 字数 383 浏览 4 评论 0原文

我目前正在努力寻找需要在 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"));
    }
}

I'm currently struggling to find the code which I need to call in the if statement in order to find the edit event of a data list.

I am trying to create a blank drop down item on an existing Drop Down List.

Any help would be great! Thanks!

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"));
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悲欢浪云 2024-11-18 16:00:05

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

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

隔纱相望 2024-11-18 16:00:05
if (e.Item.ItemType == ListItemType.EditItem)
if (e.Item.ItemType == ListItemType.EditItem)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文