-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCart.aspx.cs
89 lines (85 loc) · 2.65 KB
/
Cart.aspx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Restaurant003.App_Code;
namespace Restaurant003
{
public partial class Cart : System.Web.UI.Page
{
DataUtil data = new DataUtil();
protected void Page_Load(object sender, EventArgs e)
{
List<CartItem> ds = (List<CartItem>)Session["cartItems"];
if (!IsPostBack)
{
if(Session["cartItems"] == null || ds.Count == 0)
{
txtEmptyCart.Text = "Bạn không có sản phẩm nào trong giỏ hàng";
thanhToan.Visible = false;
}
else
{
HienThi();
}
}
if (Session["email"] != null)
{
username.Text = Session["email"].ToString().Substring(0, 8);
btndn.Visible = false;
btndk.Visible = false;
}
else
{
username.Text = "Tài khoản";
btndx.Visible = false;
}
}
public void HienThi()
{
if (Session["cartItems"] == null)
{
txtEmptyCart.Text = "Bạn không có sản phẩm nào trong giỏ hàng";
}
else
{
List<CartItem> ds = (List<CartItem>)Session["cartItems"];
gridCart.DataSource = ds;
DataBind();
tongTien.Text = "Tổng tiền: " + TinhTongTien(ds).ToString() + ".000 đồng";
}
}
public int TinhTongTien(List<CartItem> ds)
{
int tong = 0;
for(var i = 0; i < ds.Count; i++)
{
tong += ds[i].subTotal;
}
return tong;
}
protected void logout(object sender, EventArgs e)
{
Session.RemoveAll();
Response.Redirect("Home.aspx");
}
protected void Xoa_Click(object sender, CommandEventArgs e)
{
List<CartItem> ds = (List<CartItem>)Session["cartItems"];
if (e.CommandName == "xoa")
{
int m = Convert.ToInt16(e.CommandArgument);
data.XoaGioHang(ds, m);
HienThi();
tongTien.Visible = false;
if(ds.Count == 0)
{
txtEmptyCart.Text = "Bạn không có sản phẩm nào trong giỏ hàng";
}
Session["cartItems"] = ds;
}
}
}
}