0

我需要从我的 ListView 中检索一些值,它与 SQL 绑定到 Order by Price ASC

要求 :

  1. 列表中的总行数
  2. 最低价格和卖家名称,列表中的最低价格
  3. 最高价格和卖家名称,列表中的最高价格

    <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 或其他任何东西

4

1 回答 1

0

这是 Listview 在浏览器上的输出。卖家名称 价格 AB 1980.00 XX 2000.00 YY 2100.00 ZZ 2300.00

于 2013-06-12T13:13:34.030 回答