本文介绍了如何绑定动态购物车的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你能指导我如何在ASP.NET MVC中绑定这个购物车
[]
提前致谢:)
Can you guide me how to Bind this cart in ASP.NET MVC
http://bootsnipp.com/snippets/featured/bootstrap-navbar-cart-dropdown[^]
Thanks in advance :)
推荐答案
<ul class="dropdown-menu dropdown-cart" role="menu">
@{
foreach(var item in Model)
{
<li>
<span class="item">
<span class="item-left">
<img src="@item.ProductImgURL" alt="" />
<span class="item-info">
<span>@Model.ProductName</span>
<span>@Model.ProductPrice
-KR
-KR
这篇关于如何绑定动态购物车的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!