コード例 #1
0
ファイル: ListCart.cs プロジェクト: onixus74/MVCYoubay2
        static ListCart()
        {
            if (HttpContext.Current.Session["MyVirtualCart"] == null)
            {

                Instance = new ListCart();
                Instance.Items = new List<Item>();
                HttpContext.Current.Session["MyVirtualCart"] = Instance;

            }
            else
                Instance = (ListCart)HttpContext.Current.Session["MyVirtualCart"];
        }
コード例 #2
0
ファイル: ListCart.cs プロジェクト: onixus74/MVCYoubay2
 static ListCart()
 {
     if (HttpContext.Current.Session["MyVirtualCart"] == null)
     {
         Instance       = new ListCart();
         Instance.Items = new List <Item>();
         HttpContext.Current.Session["MyVirtualCart"] = Instance;
     }
     else
     {
         Instance = (ListCart)HttpContext.Current.Session["MyVirtualCart"];
     }
 }