如何将数据库值绑定到div?

发布于 2024-09-04 02:52:55 字数 50 浏览 5 评论 0原文

在我的应用程序中,我想将数据绑定到 div,它位于数据列表中,那么我如何绑定该值。谢谢

in my application i want to bind the data to a div, which is in a datalist so how can i bind the value .thank you

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

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

发布评论

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

评论(3

瞳孔里扚悲伤 2024-09-11 02:52:55

使用包含 Literal 控件的 PanelPanel 将呈现为 divLiteral 控件呈现为文本。您将数据绑定到 Literal 控件的 Text 属性。这会给你你想要的。一个 div,其中包含 DataList 控件中显示的每个项目的文本。

创造性地组合控件,为您提供所需的布局、格式、数据绑定等。如果它变得太复杂,请创建一个用户控件

Use a Panel that contains a Literal control. The Panel will render as a div and the Literal control renders as text. You will data bind to the Literal control's Text property. This will give you what you want. A div that contains text for each item displayed in a DataList control.

Be creative in combining controls to give you the layout, format, data-binding, and so on that you need. If it gets too complex, create a user-control

溺ぐ爱和你が 2024-09-11 02:52:55

使用这个非常有用

    <ItemTemplate>
    <asp:Label runat="server" ID="lblLocationId" Text='<%#Eval("LocationID") %>' ></asp:Label>

       <asp:Panel Wrap="true" ID="Panel1" Width="140px" Font-Underline="true" Font-Italic="true" ForeColor="Black" ScrollBars="None" runat="server">
       <%-- <div id="div1" runat="server"></div>--%>
        <asp:Literal runat="server" Text='<%#Eval("Solution") %>'>
        </asp:Literal>
        </asp:Panel>
    </ItemTemplate>

use this is very useful

    <ItemTemplate>
    <asp:Label runat="server" ID="lblLocationId" Text='<%#Eval("LocationID") %>' ></asp:Label>

       <asp:Panel Wrap="true" ID="Panel1" Width="140px" Font-Underline="true" Font-Italic="true" ForeColor="Black" ScrollBars="None" runat="server">
       <%-- <div id="div1" runat="server"></div>--%>
        <asp:Literal runat="server" Text='<%#Eval("Solution") %>'>
        </asp:Literal>
        </asp:Panel>
    </ItemTemplate>
等你爱我 2024-09-11 02:52:55

使用 <%# Eval("您的数据字段的名称") %>绑定到数据源中的属性。

Use <%# Eval("Name of your data field") %> to bind to properties in your datasource.

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