Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在下拉菜单的第一行中插入一个列表项,然后执行一个存储过程。我尝试过使用 insert()、additem() 等,但没有任何运气。
感谢你的帮助!
ddl.Items.Insert(0, new ListItem("All", "All"));
您可以在执行存储过程之后或之前使用它。它将插入“全部”作为下拉列表的第一个列表项。
您需要将AppendDataBoundItems下拉列表的属性设置为true,然后您可以在绑定到数据库中的数据之前或之后插入/附加您的项目
AppendDataBoundItems
true