作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的中继器
<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&remove_item=7cbbc409ec990f19c78c75bd1e06f215&_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/
我是一名优秀的程序员,十分优秀!