如何在 Repeater 中迭代列表

发布于 2024-12-29 18:10:26 字数 326 浏览 0 评论 0原文

我有课,

public class Chat
{
    public string Ip { get; set; }
    public List<string> location { get; set; }
    public string Browser { get; set; }
    public string Version { get; set; }
    public string Os { get; set; }
}

问题是在转发器中显示时如何迭代位置列表,因为每个聊天实例都包含多个位置,并且我想在与转发器绑定时显示这些位置。

I have class

public class Chat
{
    public string Ip { get; set; }
    public List<string> location { get; set; }
    public string Browser { get; set; }
    public string Version { get; set; }
    public string Os { get; set; }
}

the problem is how can I iterate through a list of location when displaying in repeater as Each chat instance contain multiple locations and i want to display theses locations when binding with repeater.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ら栖息 2025-01-05 18:10:26

您可以嵌套第二个中继器并将其直接绑定到此属性。

<asp:repeater id="outer" runat="server">
...
<asp:ItemTemplate>
  <asp:repeater id="inner" runat="server" datasource="location">
    ... <!-- eval here   -->
  </asp:repeater>
</asp:ItemTemplate>
...
</asp:repeater>

You can nest a second repeater and bind it directly to this property.

<asp:repeater id="outer" runat="server">
...
<asp:ItemTemplate>
  <asp:repeater id="inner" runat="server" datasource="location">
    ... <!-- eval here   -->
  </asp:repeater>
</asp:ItemTemplate>
...
</asp:repeater>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文