gpt4 book ai didi

.net - 如何从绑定(bind)到 ASP.NET 中继器中删除当前 DataItem?

转载 作者:行者123 更新时间:2023-12-04 07:01:04 25 4
gpt4 key购买 nike

我想评估当前绑定(bind)到转发器的 DataItem 并在满足我的条件时将其从添加中删除。我原以为将 e.Item.DataItem 设置为 Nothing 会起作用,但事实并非如此。任何想法如何在满足特定条件时不将 DataItem 添加到转发器?

Protected Sub rpt_OnItemDataBound(ByVal sender As Object, ByVal e As RepeaterItemEventArgs)
If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then
If true Then
'don't add the current item
e.Item.DataItem = Nothing
Else
'add the current item
End If
End If
End Sub

最佳答案

您是否尝试将项目的可见性设置为 False?

If true Then
//don't add the current item
e.Item.Visible = False
Else
//add the current item
End If

关于.net - 如何从绑定(bind)到 ASP.NET 中继器中删除当前 DataItem?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1828568/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com