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

时间:2015-05-26 19:04:24

标签: c# html asp.net datasource

            <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中使用datasource的参数标签。我尝试使用类似<%#foto_path%>,但它给出了错误。如何在html标记中使用数据源的参数?

1 个答案:

答案 0 :(得分:1)

您必须使用数据绑定控件,例如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>