如何从数据表中划分获取的数据并将其中一些数据绑定到数据列表的标头模板

发布于 2024-07-10 19:36:10 字数 174 浏览 10 评论 0原文

可能主题很复杂,所以我会尝试解释一下:

我从数据库中获取一些数据,其中一些具有 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 技术交流群。

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

发布评论

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

评论(1

怪我入戏太深 2024-07-17 19:36:10

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文