您好,登錄后才能下訂單哦!
這篇文章給大家介紹asp.net中怎么利用HashTable實現(xiàn)一個購物車功能,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
具體如下:
//用戶購買商品時 if (e.CommandName.ToLower() == "buy") { //判斷用戶購物車是否為空 如果為空則分配一個 Hashtable table; if (Session["car"] == null) { table = new Hashtable(); } else { //用戶購物車己存在 則取出數(shù)據(jù) table = Session["car"] as Hashtable; } //如果用戶購物車中不包括該商品信息 則添加一個新商品 if (!table.Contains(e.CommandArgument)) { table.Add(e.CommandArgument, 1);//添加一個新商品 數(shù)量為1 } else { //如果購物車己存在該商品信息 則將該商品的數(shù)量加1 根據(jù)HashTable的鍵獲取相對應(yīng)的值 int count = Convert.ToInt32(table[e.CommandArgument].ToString()); //給該商品數(shù)量加上1 table[e.CommandArgument] = (count + 1); } //保存商品信息 Session["car"] = table; Response.Redirect("shoppingcar.aspx"); } //商品信息列表 private void shoplist() { Hashtable table; if (Session["car"] == null) { table = new Hashtable(); } else { table = Session["car"] as Hashtable; } if (table.Count == 0) { Image13.Visible = true; Msg.Visible = true; Msg.Text = "<b mce_>您還沒有購物呢?趕快購物吧!</b>"; } string[] Arrkey = new string[table.Count]; int[] ArrVal = new int[table.Count]; table.Keys.CopyTo(Arrkey, 0); table.Values.CopyTo(ArrVal, 0); //定義字符串 形成 ('1,2,3') string Products = "('"; int k = 0; for (int j = 0; j < Arrkey.Length; j++) { if(k>0)Products += "','"; k++; Products += Arrkey.GetValue(j).ToString(); } Products += "')"; DataSet ds = productbll.GetInfoByWhere(" pid in " + Products); DataTable Table1 = new DataTable(); Table1 = ds.Tables[0]; Table1.Columns.Add(new DataColumn("shuliang", System.Type.GetType("System.Int32"))); //得到pid的值 并將它設(shè)置為Table1的主鍵 DataColumn[] keys = { Table1.Columns["pid"]}; Table1.PrimaryKey = keys; foreach (string key in table.Keys) { Table1.Rows.Find(key)["shuliang"] = table[key];//根據(jù)鍵獲取值 商品的數(shù)量 } Table1.Columns.Add(new DataColumn("zongjia", System.Type.GetType("System.Double"), "hotprice*shuliang")); for (int n = 0; n < Table1.Rows.Count; n++) { tPrice +=Convert.ToDouble(Table1.Rows[n]["zongjia"]); } Label1.Text = tPrice.ToString(); Session["total"] = Label1.Text.ToString(); MyGrid.DataSource = Table1.DefaultView; MyGrid.DataBind(); } #region 從購物車中刪除一條商品信息 protected void MyGrid_RowCommand(object sender, GridViewCommandEventArgs e) { Hashtable table; if (Session["car"] == null) { table = new Hashtable(); } else { table = Session["car"] as Hashtable; } //如果點擊刪除按鈕 則從購物車中移除該商品信息 if (e.CommandName.ToLower() == "delete") { if (table.ContainsKey(e.CommandArgument)) { //從HashTable中移除該商品的信息(商品編號) 鍵:為商品編號 值為:商品數(shù)量 table.Remove(e.CommandArgument); } Msg.Text = (string)e.CommandArgument; } Session["car"] = table; //調(diào)用方法 shoplist(); } #endregion
關(guān)于asp.net中怎么利用HashTable實現(xiàn)一個購物車功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。