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"));
}
}
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
if (e.Item.ItemType == ListItemType.EditItem)
Try
if (e.Item.ItemType == ListItemType.EditItem)