<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标记中使用数据源的参数?
答案 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>