如何在中继器部分创建列表?
我需要创建一个转发器部分,它将显示 4 列 - 名字、姓氏、基于存储的列数据的链接。
所有数据加上一些未使用的额外数据都在玩家档案中。如何使用数据绑定器将代码隐藏上的数据链接到转发器控件?
我使用 Visual Studio 2008,VB.NET 作为后台代码。
I need to create a repeater section that will show 4 columns - First Name, Last Name, a link based off of stored column data that says.
All the data plus some extra not being used is in a players profile. How do I link the data on the code-behind to the repeater control with the databinders?
I am using visual studio 2008, VB.NET for the code behind.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否考虑过使用 DataGrid 而不是中继器?
以下是关于何时使用每种方法的一些详细说明。
http://msdn.microsoft.com/en-us/library/aa479015。 aspx
要更直接地回答您的问题,您需要将 Repeater 的 DataSource 属性设置为 DataView 或 ArrayList。像这样:
Have you considered using a DataGrid instead of a repeater?
Here's a bit of a breakdown on when to use each.
http://msdn.microsoft.com/en-us/library/aa479015.aspx
To more directly answer your question you'll need to set the Repeater's DataSource property to a DataView or an ArrayList. As such: