public void Load_Cart(Guid _guid) { if (string.IsNullOrEmpty(Utils.CStrDef(Session["news_guid"]))) { string strScript = "<script>"; strScript += "alert('Thông báo: Giỏ hàng của bạn trống! Quay trở lại mua hàng... ');"; strScript += "window.location='/';"; strScript += "</script>"; Page.RegisterClientScriptBlock("strScript", strScript); } else { var _basket = cart.Load_cart(_guid); if (_basket.ToList().Count > 0) { Rpgiohang.DataSource = _basket; Rpgiohang.DataBind(); for (int i = 0; i < Rpgiohang.Items.Count; i++) { DropDownList dr = Rpgiohang.Items[i].FindControl("Drquan") as DropDownList; dr.SelectedValue = _basket[i].Basket_quantity.ToString(); } } else { string strScript = "<script>"; strScript += "alert('Thông báo: Giỏ hàng của bạn trống! Quay trở lại mua hàng... ');"; strScript += "window.location='/';"; strScript += "</script>"; Page.RegisterClientScriptBlock("strScript", strScript); } } }
public void Load_Cart(Guid _guid) { if (string.IsNullOrEmpty(Utils.CStrDef(Session["news_guid"]))) { string strScript = "<script>"; strScript += "alert('Thông báo: Giỏ hàng của bạn trống! Quay trở lại mua hàng... ');"; strScript += "window.location='/san-pham.html';"; strScript += "</script>"; Page.RegisterClientScriptBlock("strScript", strScript); } else { var _basket = cart.Load_cart(_guid); if (_basket.ToList().Count > 0) { Rpgiohang.DataSource = _basket; Rpgiohang.DataBind(); } else { string strScript = "<script>"; strScript += "alert('Thông báo: Giỏ hàng của bạn trống! Quay trở lại mua hàng... ');"; strScript += "window.location='/san-pham.html';"; strScript += "</script>"; Page.RegisterClientScriptBlock("strScript", strScript); } } }
private void loadCartFinal() { var list = order.load_ordePaymentFinal(_idorder).ToList(); if (list.Count > 0) { Rpgiohang.DataSource = list; Rpgiohang.DataBind(); Lbtotal.Text = fm.FormatMoney(list[0].ORDER_TOTAL_AMOUNT); lbtotalmoney.Text = fm.FormatMoney(list[0].ORDER_TOTAL_ALL); decimal _ship = Utils.CDecDef(list[0].ORDER_SHIPPING_FEE); Lbship.Text = _ship == 0 ? "Miễn phí" : (_ship > 0 ? fm.FormatMoney(_ship) : "Liên hệ"); } }
public void Load_Cart(Guid _guid) { var _basket = carts.Load_cart(_guid); if (_basket.ToList().Count > 0) { Rpgiohang.DataSource = _basket; Rpgiohang.DataBind(); for (int i = 0; i < Rpgiohang.Items.Count; i++) { DropDownList dr = Rpgiohang.Items[i].FindControl("Drquan") as DropDownList; dr.SelectedValue = _basket[i].Basket_quantity.ToString(); } } }