根据条件在下拉列表中显示特定项目
我有一个包含四个选项的下拉列表,例如:
- 的新
- 已审核
- 待审核
- 已呈现
我需要根据某些条件仅在下拉列表中显示特定项目。 我的意思是,有时只有 2 项
- 新
- 评论,
有时有 3 项
- 新
- 评论
- 待审查
,有时是所有项目。 我该怎么做?我正在使用 C#。
I have a dropdown list with four options like:
- New
- Reviewed
- To be Reviewed
- Presented
I need to display only specific items in the dropdown list based on some conditions.
I mean sometimes with only 2 items
- New
- Review
Sometimes with 3 items
- New
- Review
- To be Reviewed
and sometimes all items.
How can I do this? I am using C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在下拉列表的 DataBound 事件中,您可以循环遍历 Items 集合并删除任何需要过滤的项目。唯一真正的技巧是向后循环集合,这样您就可以删除项目而不会弄乱迭代器的位置。
In the DataBound event of the dropdown, you can loop through the Items collection and remove any items that need to be filtered. The only real trick is to loop backwards through the collection, so that you can remove items without messing up your iterator location.
您可以按如下方式使该项目可见,假设
tstr
是您的菜单项:其中
i
是您的项目的索引。You can make the item visible as follows, assuming
tstr
is your menu item:where
i
is the index of your item.