cookie购物车基本实现记录

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
//文章来源: http://study.pctoday.net.cn/2_ASP.net.aspx
public class CookieShoppingCart
{

    /// <summary>
    ///加入购物车
    /// </summary>
    /// <param></param>
    /// <param></param>
    public static void AddToShoppingCart(int ProductID, int Quantity, int Box)
     {
        if (HttpContext.Current.Request.Cookies["ShoppingCart"] == null)
         {
             HttpCookie oCookie = new HttpCookie("ShoppingCart");
            //Set Cookie to expire in 3 hours
             oCookie.Expires = DateTime.Now.AddYears(3);
             oCookie.Value = ProductID.ToString() + ":" + Quantity.ToString() + ":" + Box.ToString();

             HttpContext.Current.Response.Cookies.Add(oCookie);
         }
        //如果cookie已经存在
        else
         {
            bool bExists = false;
             HttpCookie oCookie = (HttpCookie)HttpContext.Current.Request.Cookies["ShoppingCart"];
             oCookie.Expires = DateTime.Now.AddYears(3);
            string ShoppingCartStr = oCookie.Value.ToString();

            string[] arrCookie = ShoppingCartStr.Split(new char[] { ',' });
            // 查看cookie中是否有该产品
            string newCookie = "";
            for (int i = 0; i < arrCookie.Length; i++)
             {
                if (arrCookie[i].Trim().Remove(arrCookie[i].IndexOf(':')) == ProductID.ToString().Trim())
                 {
                     bExists = true;
                    string OldQuantity = arrCookie[i].Trim().Substring(arrCookie[i].Trim().IndexOf(':') + 1);//得到数量
                     OldQuantity = OldQuantity.Remove(OldQuantity.LastIndexOf(":"));
                     OldQuantity = (Convert.ToInt32(OldQuantity) + Quantity).ToString();
                     arrCookie[i] = arrCookie[i].Trim().Remove(arrCookie[i].IndexOf(':')) + ":" + OldQuantity + ":" + Box.ToString();
                    //HttpContext.Current.Response.Write(arrCookie[i].Trim().Remove(arrCookie[i].IndexOf(':')) + "已存在!数量:" + OldQuantity + "<br>");
                    //HttpContext.Current.Response.Write(arrCookie[i] + "<br>");
                 }
                 newCookie = newCookie + "," + arrCookie[i];
             }

            //如果没有该产品
            if (!bExists)
             {
                 oCookie.Value = oCookie.Value + "," + ProductID.ToString() + ":" + Quantity.ToString() + ":" + Box.ToString();
             }
            else
             {
                 oCookie.Value = newCookie.Substring(1);
             }
             HttpContext.Current.Response.Cookies.Add(oCookie);
             HttpContext.Current.Response.Write("ShoppingCart:" + HttpContext.Current.Request.Cookies["ShoppingCart"].Value);

         }
     }


    /// <summary>
    /// 移除购物车子项
    /// </summary>
    /// <param></param>
    public static void RemoveShoppingCart(int ProductID)
     {
        if (HttpContext.Current.Request.Cookies["ShoppingCart"] != null)
         {
             HttpCookie oCookie = (HttpCookie)HttpContext.Current.Request.Cookies["ShoppingCart"];
             oCookie.Expires = DateTime.Now.AddYears(3);
            //Check if Cookie already contain same item
            string ShoppingCartStr = oCookie.Value.ToString();

            string[] arrCookie = ShoppingCartStr.Split(new char[] { ',' });
            string[] arrCookie2 = new string[arrCookie.Length - 1];
            int j = 0;
            string NewStr = "";
            for (int i = 0; i < arrCookie.Length; i++)
             {
                if (arrCookie[i].Trim().Remove(arrCookie[i].IndexOf(':')) != ProductID.ToString())
                     NewStr = NewStr + "," + arrCookie[i];
             }
            if (NewStr == "")
                 HttpContext.Current.Response.Cookies["ShoppingCart"].Value = "";
            else
                 HttpContext.Current.Response.Cookies["ShoppingCart"].Value = NewStr.Substring(1);
         }
     }


    public static void UpdateShoppingCart(int ProductID, int Quantity, bool box)
     {
        int Box = 1;
        if (!box)
             Box = 0;
        if (HttpContext.Current.Request.Cookies["ShoppingCart"] != null)
         {
            bool bExists = false;
             HttpCookie oCookie = (HttpCookie)HttpContext.Current.Request.Cookies["ShoppingCart"];
             oCookie.Expires = DateTime.Now.AddYears(3);
            string ShoppingCartStr = oCookie.Value.ToString();

            string[] arrCookie = ShoppingCartStr.Split(new char[] { ',' });
            //查看cookie中是否有该产品
            string newCookie = "";
            for (int i = 0; i < arrCookie.Length; i++)
             {
                if (arrCookie[i].Trim().Remove(arrCookie[i].IndexOf(':')) == ProductID.ToString().Trim())
                     arrCookie[i] = arrCookie[i].Trim().Remove(arrCookie[i].IndexOf(':')) + ":" + Quantity.ToString() + ":" + Box.ToString();
                 newCookie = newCookie + "," + arrCookie[i];
             }
             HttpContext.Current.Response.Cookies["ShoppingCart"].Value = newCookie.Substring(1);
         }
     }
public static DataTable GetShoppingCart()
    {
        DataTable dt = new DataTable();
        if (HttpContext.Current.Request.Cookies["ShoppingCart"] != null && HttpContext.Current.Request.Cookies["ShoppingCart"].Value.Trim() != "")
        {
            HttpCookie oCookie = (HttpCookie)HttpContext.Current.Request.Cookies["ShoppingCart"];
            oCookie.Expires = DateTime.Now.AddYears(3);
            string ShoppingCartStr = oCookie.Value.ToString();
            //HttpContext.Current.Response.Write(ShoppingCartStr);
            string[] arrCookie = ShoppingCartStr.Split(new char[] { ',' });
 

            //查看cookie中是否有该产品
            string newCookie = "";
            for (int i = 0; i < arrCookie.Length; i++)
            {
                newCookie = newCookie + "," + arrCookie[i].Trim().Remove(arrCookie[i].IndexOf(':'));
            }
            newCookie = newCookie.Substring(1);
            dt = Product.GetProductByProductIds(newCookie, -1);
            dt.Columns.Add("Quantity");
            dt.Columns.Add("Box");

 

            foreach (DataRow row in dt.Rows)
            {
                for (int i = 0; i < arrCookie.Length; i++)
                {
                    if (arrCookie[i].Trim().Remove(arrCookie[i].IndexOf(':')) == row["ProductId"].ToString())
                    {
                        row["Quantity"] = arrCookie[i].Substring(arrCookie[i].IndexOf(":") + 1);
                        row["Quantity"] = row["Quantity"].ToString().Remove(row["Quantity"].ToString().IndexOf(":"));
                        string Box = arrCookie[i].Substring(arrCookie[i].LastIndexOf(":") + 1);
                        if (Box == "1")
                            row["Box"] = true;
                        else
                            row["Box"] = false;
                    }
                }
            }
        }
        else
        {
            dt = Database.GetDataTable("select top 0 * from View_ProductList");
            dt.Columns.Add("Quantity");
        }
        return dt;

    }

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值