⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 viewcart.aspx.cs

📁 The purpose of this code is to assist developers get some good ideas for how to build a PayPal shop
💻 CS
字号:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class ViewCart : System.Web.UI.Page
{
    private Invoice _selectedInvoice = new Invoice();
    public Invoice SelectedInvoice
    {
        get
        {
            if (_selectedInvoice.InvoiceId == "")
            {
                try
                {
                    _selectedInvoice = (Invoice)Session["Invoice"];
                }
                catch { }
            }
            return _selectedInvoice;
        }
    }

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            if (Request["EmptyCart"] != null && Request["EmptyCart"].ToString().ToLower() == "true")
            {
                SelectedInvoice.EmptyCart();
                Session["Invoice"] = SelectedInvoice;
            }
            if (Request["Remove"] != null)
            {
                int productToRemove = int.Parse(Request["Remove"].ToString());
                SelectedInvoice.RemoveProduct(productToRemove);
                Session["Invoice"] = SelectedInvoice;
            }
            RefreshDataInRepeater();
        }       
    }

    private void RefreshDataInRepeater()
    {
        this.rptCartItems.DataSource = SelectedInvoice.InvoiceItems;
        this.rptCartItems.DataBind();
        this.rptCartItems.Visible = (SelectedInvoice.InvoiceItems.Count > 0);
        this.lblEmptyCartMessage.Visible = (this.rptCartItems.Visible == false);
    }

    protected void txtQty_TextChanged(object sender, System.EventArgs e)
    {        
        try
        {
            //loop thru each product in cart
            for (int idx = 0; idx <= rptCartItems.Items.Count; idx++)
            {
                try
                {
                    Label lblIID = (Label)rptCartItems.Items[idx].FindControl("lblProductId");
                    TextBox qtyObj = (TextBox)rptCartItems.Items[idx].FindControl("txtQty");

                    int quantity = 0;
                    if (qtyObj.Text.Trim() != "")
                    {
                        quantity = int.Parse(qtyObj.Text.Trim());
                    }
                    int productId = int.Parse(lblIID.Text);
                    SelectedInvoice.UpdateProductQuantity(productId, quantity);
                    Session["Invoice"] = SelectedInvoice;
                    
                }
                catch {  }

            }
            RefreshDataInRepeater();

        }
        catch {  }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -