如何在 Repeater 中迭代列表
我有课,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以嵌套第二个中继器并将其直接绑定到此属性。
You can nest a second repeater and bind it directly to this property.