Exemplo n.º 1
0
        protected void lbRemoveFromCart_Click(object sender, EventArgs e)
        {
            errDiv.InnerText = "";
            try
            {
                string selectedProductId = (sender as LinkButton).CommandArgument.ToString();
                string userId            = hfUserId?.Value ?? Session["user_id"]?.ToString();
                int    pid = int.Parse(selectedProductId);
                int    uid = int.Parse(userId);
                UserBasketController.UpdateBasket(uid, pid, -1);

                DataTable allProducts = UserBasketController.GetAllDetailsByUserIdAsDataTable(uid);
                gvProducts.DataSource = allProducts;
                gvProducts.DataBind();

                hfTotal.Value          = UserBasketController.GetTotalForUser(uid).ToString();
                divTotalCost.InnerText = "Total Cost: R " + hfTotal.Value;

                errDiv.InnerText = "Item removed.";
            }
            catch (Exception ex)
            {
                errDiv.InnerText = ex.Message;
            }
        }
Exemplo n.º 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            errDiv.InnerText = "";
            if (Request.QueryString.HasKeys())//!IsPostBack &&
            {
                if (!string.IsNullOrWhiteSpace(Request.QueryString["uid"]))
                {
                    hfUserId.Value    = Request.QueryString["uid"].ToString();
                    Session["UserId"] = hfUserId.Value;
                }
            }
            string userId = hfUserId?.Value ?? Session["user_id"]?.ToString();

            if (!string.IsNullOrWhiteSpace(userId))
            {
                try
                {
                    int       uid         = int.Parse(userId);
                    DataTable allProducts = UserBasketController.GetAllDetailsByUserIdAsDataTable(uid);
                    gvProducts.DataSource = allProducts;
                    gvProducts.DataBind();

                    hfTotal.Value          = UserBasketController.GetTotalForUser(uid).ToString();
                    divTotalCost.InnerText = "Total Cost: R " + hfTotal.Value;
                }
                catch (Exception ex)
                {
                    //errDiv.InnerText = ex.Message;
                }
            }
            else
            {
                errDiv.InnerText = "Please login first!";
            }
        }