如何从数据表中划分获取的数据并将其中一些数据绑定到数据列表的标头模板
可能主题很复杂,所以我会尝试解释一下:
我从数据库中获取一些数据,其中一些具有 TypeId=1,一些具有 TypeId=2。 我想将 TypeId=1 的数据获取到 header 模板,并将 TypeId=2 的数据获取到 Datalist 控件中的 itemtemplate。
我该怎么做?
May be the subject is complicated, so I'll try to explain:
I get some data from database which some of them has TypeId=1 and some has TypeId=2. I want to take data which TypeId=1 to header template and TypeId=2 to itemtemplate in the Datalist control.
How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DataView 获取以下内容的子集DataTable 中的数据,然后将其绑定到项目内容的 DataList,但您必须通过附加到 ItemDataBound 事件并查找 Header 的 ListItemType。
You can use a DataView to get a subset of the data in a DataTable and then bind that to the DataList for the item content, but you'll have to manually insert the data into the heading by attaching to the ItemDataBound event and looking for the ListItemType of Header.