1 private void DataGrid1_ItemCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)//假設前面購買命令是一個命令名為buy的LinkButton
2 {//關鍵,建立和加如購物車
3 string pid=this.DataGrid1.DataKeys[e.Item.ItemIndex].ToString();//取出寵物編號
4 if(e.CommandName=="buy")//如果命令名是 buy,說明是購買
5 {
6 if(Session["bus"]==null)//先就得檢查購物車是否存在,如果不存在,就建立呗
7 {
8 System.Collections.Hashtable ht=new Hashtable();//先建立一個哈希表
9 ht.Add(pid,1);//哈希表中的兩個列,一個key,一個value ,我們就前面放寵物編號,後面放購買數量好了,預設置為1
10 Session["bus"]=ht;//將哈希表賦值給Session對象
11 }
12 else//如果存在的話
13 {
14 Hashtable ht=(Hashtable)Session["bus"];//使用強制類型轉換,再將Session["bus"]賦值給哈希表對象 ht
15 if(ht[pid]==null)//如果哈希表中對應的ID沒有,
16 {
17 ht[pid]=1;//那就直接給他設為 1
18 }
19 else//如果已經有對應的ID
20 {
21 ht[pid]=(int)ht[pid]+1;//那麼就把原來的取出來再加上 1
22 }
23 Session["bus"]=ht;//最後再更新Session 對象
24 }
25 }
26
27 }
而讀取的方法更簡單了,如下:
this.DataList1.DataSource=(Hashtable)Session["bus"];//直接利用哈希表作為數據源,
this.DataList1.DataBind();//綁定一下 www.knowsky.com
更新數量
1private void LinkButton1_Click(object sender, System.EventArgs e)
2 {
3
4 foreach(DataListItem dl in this.DataList1.Items)//遍歷集合
5 {
6 TextBox tb=(TextBox)dl.FindControl("TextBox1");//找文本框
7 int newpid=Convert.ToInt32(tb.Text.ToString());//查出文本框裡面的值
8
9 Label label1=(Label)dl.FindControl("key");//找到裝載哈希表key字段的那個控件
10 string pid=label1.Text.ToString();//把他的值拿出來
11
12 Hashtable ht=(Hashtable)Session["bus"];//把session["bus"]對象賦值給哈希表 ht
13 int oldpid=(int)ht[pid];//求得原來的數量
14
15 if(newpid!=oldpid)//如果文本框裡的值不等於原來的數量,就用新的更換到哈希表中的值
16 {
17 ht[pid]=newpid;
18 }
19 Session["bus"]=ht;//最後再更新Session 對象
20 }
21 }
出處:.Net入門ing…… BLOG