如何在 ASP.NET 中的 html 标签中使用 select 参数

How to use select parameters in html tags in ASP.NET

            <asp:SqlDataSource ID="SqlKitapDataSoruce" runat="server" 
                ConnectionString="<%$ ConnectionStrings:DatabaseProjeConnectionString %>" 
                SelectCommand="SELECT * FROM [Kitap] ORDER BY [satisSayisi] DESC" >

            </asp:SqlDataSource>
            <% for(int i = 0; i < 5; i++) %>
                <% { %>

                    <div class="indexKitap">
                        <asp:ImageButton ID="<% %>" runat="server" ImageUrl="<%  %>" />
                        <asp:Label ID="LblKitapAd" runat="server" Text="<% %>"></asp:Label>
                    </div>

我有这段代码,我想使用名为 foto_path 的列作为 ImageUrl 和 kitap_ad 作为标签的文本,但我不知道如何在 html 标签。我尝试使用 like <%#foto_path%> 但它给出了错误。如何在 html 标签中使用数据源的参数?

您必须使用数据绑定控件,例如 Repeater。类似于:

<asp:Repeater runat="server" DataSourceID="SqlKitapDataSoruce">
    <ItemTemplate>
        <div class="indexKitap">
            <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl='<%# Eval("foto_path")  %>' />
            <asp:Label ID="LblKitapAd" runat="server" Text='<%# Eval("kitap_ad") %>'></asp:Label>
        </div>
    </ItemTemplate>
</asp:Repeater>