資源簡介
此購物車實例主要有三大功能:1.折扣方案調整 2.商品列表 3.購物車
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Web.UI.WebControls;
public?partial?class?Default?:?System.Web.UI.Page?{
public?ShopCartSet?ShopCart?{
get?{
return?(ShopCartSet)Session[“ShopCartSet“];
}
set?{
Session[“ShopCartSet“]?=?value;
}
}
public?List?DiscountsUsing?{
get?{
return?(List)Application[“DiscountsUsing“];
}
}
protected?void?Page_Load(object?sender?EventArgs?e)?{
if?(!this.IsPostBack)?{
this.SetDataBind();
this.SetShopCartDataBind();
this.SetDiscountDataBind();
}
}
private?void?SetDataBind()?{
ProductBLL?bllProduct?=?new?ProductBLL();
this.gvProducts.DataSource?=?bllProduct.GetAllProducts();
this.gvProducts.DataBind();
}
private?void?SetShopCa
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1602??2009-12-23?14:58??購物車示例\購物車示例.sln
????..A..H.?????31744??2012-11-02?11:06??購物車示例\購物車示例.suo
?????文件???????5549??2009-12-25?18:04??購物車示例\ShopCartExample\Default.aspx
?????文件???????2870??2009-12-25?09:37??購物車示例\ShopCartExample\Default.aspx.cs
?????文件????????757??2009-12-24?12:05??購物車示例\ShopCartExample\Global.asax
?????文件????????660??2011-03-03?10:20??購物車示例\ShopCartExample\SetDiscounts.aspx
?????文件???????1626??2009-12-24?20:59??購物車示例\ShopCartExample\SetDiscounts.aspx.cs
?????文件???????1316??2009-12-25?09:50??購物車示例\ShopCartExample\st
?????文件???????6446??2009-12-23?14:16??購物車示例\ShopCartExample\Web.config
?????文件????????305??2009-12-23?15:39??購物車示例\ShopCartExample\App_Code\BLL\ProductBLL.cs
?????文件????????631??2009-12-24?20:40??購物車示例\ShopCartExample\App_Code\BLL\Discount\CountDiscount.cs
?????文件????????264??2009-12-25?09:56??購物車示例\ShopCartExample\App_Code\BLL\Discount\IDiscountable.cs
?????文件????????671??2009-12-24?20:41??購物車示例\ShopCartExample\App_Code\BLL\Discount\ItemPriceDiscount.cs
?????文件????????300??2009-12-24?20:43??購物車示例\ShopCartExample\App_Code\BLL\Discount\NewYearDiscount.cs
?????文件???????2548??2009-12-25?09:54??購物車示例\ShopCartExample\App_Code\DAL\DBHelper.cs
?????文件????????920??2009-12-24?18:23??購物車示例\ShopCartExample\App_Code\DAL\ProductDAL.cs
?????文件????????626??2009-12-24?18:23??購物車示例\ShopCartExample\App_Code\Models\Product.cs
?????文件???????1055??2009-12-24?20:57??購物車示例\ShopCartExample\App_Code\Models\ShopCartItem.cs
?????文件???????1725??2009-12-24?20:57??購物車示例\ShopCartExample\App_Code\Models\ShopCartSet.cs
?????文件?????266240??2005-01-01?03:53??購物車示例\ShopCartExample\App_Data\ShopCart.mdb
?????目錄??????????0??2011-03-18?20:54??購物車示例\ShopCartExample\App_Code\BLL\Discount
?????目錄??????????0??2011-03-18?20:54??購物車示例\ShopCartExample\App_Code\BLL
?????目錄??????????0??2011-03-18?20:54??購物車示例\ShopCartExample\App_Code\DAL
?????目錄??????????0??2011-03-18?20:54??購物車示例\ShopCartExample\App_Code\Models
?????目錄??????????0??2011-03-18?20:54??購物車示例\ShopCartExample\App_Code
?????目錄??????????0??2011-03-18?21:13??購物車示例\ShopCartExample\App_Data
?????目錄??????????0??2011-03-18?22:24??購物車示例\ShopCartExample
?????目錄??????????0??2011-03-18?20:54??購物車示例
-----------?---------??----------?-----??----
???????????????327855????????????????????28
............此處省略1個文件信息
評論
共有 條評論