如何隐藏<;asp:中继器>;
本文关键字:asp 中继器 gt 何隐藏 lt 隐藏 | 更新日期: 2023-09-27 18:25:07
这是我的代码:
<asp:Repeater runat="server" ID="rpUbicazione">
<ItemTemplate>
<div class="Field" style="margin-bottom:20px;">
// elements
</div>
</ItemTemplate>
</asp:Repeater>
我想隐藏第一个元素。所以我试着把第一行改成:
<asp:Repeater runat="server" ID="rpUbicazione" Visible="<%# (Container.ItemIndex != 0) %>">
但它似乎不起作用:ItemIndex
它不是一种方法。
我该怎么做?
试试这个:
<asp:Repeater runat="server" ID="rpUbicazione">
<ItemTemplate>
<div class="Field" style='margin-bottom: 20px; display: <%# Container.ItemIndex == 0 ? "none" : "block" %>'>
// elements
</div>
</ItemTemplate>
</asp:Repeater>
或者你可以这样做:
<script runat="server">
protected void rpUbicazione_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemIndex == 0)
{
e.Item.FindControl("divElement").Visible = false;
}
}
</script>
<asp:Repeater runat="server" ID="rpUbicazione" onitemdatabound="rpUbicazione_ItemDataBound">
<ItemTemplate>
<div id="divElement" runat="server" class="Field" style="margin-bottom: 20px;">
// elements
</div>
</ItemTemplate>
</asp:Repeater>