gpt4 book ai didi

css - ASP Repeater - 无法在 DIV 中添加类

转载 作者:行者123 更新时间:2023-11-28 07:11:47 25 4
gpt4 key购买 nike

我在我的 asp.net 文件中使用 Repeater 控件。一切正常,除了 DIV 被扭曲,因为它在 DIV 中添加类时抛出错误

  • 下面的代码工作正常:(使用扭曲的 DIV)

    <ItemTemplate>
    <%# (Container.ItemIndex != 0 && Container.ItemIndex % 5 == 0) ? @"</div><div>" : string.Empty %>
    <asp:Image ID="imgGallery" runat="server" ImageUrl='<%# /* your code here */ %>' />
    </ItemTemplate>

    <FooterTemplate></div></FooterTemplate>
    </asp:Repeater>

    This is what I want:(To add class in DIV but it's throwing error)

    <asp:Repeater ID="repImages" runat="server">
    <HeaderTemplate><div></HeaderTemplate>

    <ItemTemplate>
    <%# (Container.ItemIndex != 0 && Container.ItemIndex % 5 == 0) ? @"</div><div class="row"**>" : string.Empty %>
    <asp:Image ID="imgGallery" runat="server" ImageUrl='<%# /* your code here */ %>' />
    </ItemTemplate>

    <FooterTemplate></div></FooterTemplate>
    </asp:Repeater>

最佳答案

尝试用撇号替换引号

@"</div><div class='row'**>"

关于css - ASP Repeater - 无法在 DIV 中添加类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32594655/

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