如何设置到数据源?

发布于 2024-10-31 19:01:48 字数 426 浏览 8 评论 0原文

如何设置 ItemTemplate 的数据源?现在我有一个由数据中继器包装的,这就是我对其进行数据绑定的方式。

 <asp:Repeater ID="rptTotal" runat="server">
        <ItemTemplate>
            <tr>
                <td>One</td>
            <td>Two</td>
            <td>Three</td>
            <td>Four</td>
                </tr>
        </ItemTemplate>
</asp:Repeater>

How can I set the datasource of an ItemTemplate? Right now I have one that is wrapped by a datarepeater and that is how I databind to it.

 <asp:Repeater ID="rptTotal" runat="server">
        <ItemTemplate>
            <tr>
                <td>One</td>
            <td>Two</td>
            <td>Three</td>
            <td>Four</td>
                </tr>
        </ItemTemplate>
</asp:Repeater>

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

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

发布评论

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

评论(1

面如桃花 2024-11-07 19:01:48

您无法为项目模板设置数据源,您可以在后面的代码中使用以下代码为转发器设置数据源

rptTotal.DataSource = datasourcename

You cant set the datasource for the item template, you can set it for the repeater in the code behind using

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