gpt4 book ai didi

jquery - 如何对中继器中的列求和

转载 作者:行者123 更新时间:2023-12-01 04:49:04 25 4
gpt4 key购买 nike

这是我的中继器

<asp:Repeater runat="server" ID="repBasket">
<ItemTemplate>
<li>
<a href="http://stylo.senseithemes.com/?product=flying-ninja">
<img width="100" height="130" src="http://stylo.senseithemes.com/wp-content/uploads/2013/06/poster_2_up-100x130.jpg" class="attachment-shop_thumbnail wp-post-image" alt="poster_2_up">
<%#Eval("ProductName") %>
</a>
<span class="quantity">
Quantity: <%#Eval("Quantity")%> x
<span class="price">
<span class="amount"><%#Eval("ProductPrice") %></span>
</span>
</span>
<div class="product-remove">
<a href="http://stylo.senseithemes.com/?page_id=16&amp;remove_item=7cbbc409ec990f19c78c75bd1e06f215&amp;_n=294a49ca25" class="btn-remove" title="Remove this item">×</a>
</div>
</li>
</ItemTemplate>


这是我通过 session ID 获取产品背后的代码

using (DermabonEntities db = new DermabonEntities())
{
var q = (from d in db.Basket
where d.UserId == sessionId
select d).ToList();

repBasket.DataSource = q;
repBasket.DataBind();

int UrunAdet = (from d in db.Basket
where d.UserId == sessionId
select d).Count();

Label.Text = UrunAdet.ToString();
}

我需要在中继器中对 ProductPrice 求和,如何求和?

最佳答案

在查询结束时,您可以使用以下代码计算总数:

   TotalPrice =  q.Aggregate(0D, (runningTotal, next) => 
runningTotal + (next.Quantity * next.ProductPrice));

您可以将此值设置为公共(public)或 protected 属性,以将其显示在您的 Web 表单上。

   public double TotalPrice 
{
get { return Convert.ToDouble(ViewState["TotalPrice"]); }
set { ViewState["TotalPrice"] = value; }
}

关于jquery - 如何对中继器中的列求和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24030309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com