我需要从我的 ListView 中检索一些值,它与 SQL 绑定到 Order by Price ASC
要求 :
- 列表中的总行数
- 最低价格和卖家名称,列表中的最低价格
最高价格和卖家名称,列表中的最高价格
<asp:ListView ID="ListView1" runat="server" DataSourceID="SqlDataSource1"> <ItemTemplate> <tr> <td><asp:Label ID="SellersName" runat="server" Text='<%# Eval("SellerName") %>'/></td> <td><asp:Label ID="PriceLabel" runat="server" Text='<%# Bind("Price","₹ {0:N2}") %>'/> </td> </tr> </ItemTemplate> </asp:ListView>
它如何在 C# 中检索这些信息?这是否可以使用 itembound 或其他任何东西