Esempio n. 1
0
        protected void btnEdit_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < gvMyAuctions.Rows.Count; i++)       //Input Validation to make sure one and only one checkbox is selected
            {
                CheckBox cb;
                cb = (CheckBox)gvMyAuctions.Rows[i].FindControl("cbSelect");

                if (cb.Checked)
                {
                    amountchecked = amountchecked + 1;
                }
            }

            if (amountchecked < 1)
            {
                lblMessage.Text = "Please Select a product to work with";
            }

            if (amountchecked > 1)
            {
                lblMessage.Text = "Please Select only one product to work with";
            }
            else
            {
                for (int i = 0; i < gvMyAuctions.Rows.Count; i++)                             //If all conditions are good pull the information from the one selected
                {
                    CheckBox cb;
                    cb = (CheckBox)gvMyAuctions.Rows[i].FindControl("cbSelect");

                    if (!cb.Checked)
                    {
                        continue;
                    }
                    else
                    {
                        Customer user;
                        user = (Customer)Session["User"];
                        string username = user.username;


                        ShowEditFunctions();
                        txtProductName.Text        = gvMyAuctions.Rows[i].Cells[1].Text;
                        txtProductDescription.Text = gvMyAuctions.Rows[i].Cells[2].Text;
                        txtReservePrice.Text       = gvMyAuctions.Rows[i].Cells[3].Text;

                        string productname        = txtProductName.Text;
                        string productdescription = txtProductDescription.Text;


                        OnlineAuctionSvc.OnlineAuction pxy = new OnlineAuctionSvc.OnlineAuction();
                        int productID = pxy.GetProductID(productname, productdescription);
                        Session["ProductID"] = productID;
                    }
                }
            }
        }
Esempio n. 2
0
        protected void btnDelete_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < gvMyAuctions.Rows.Count; i++)       //Input Validation to make sure one and only one checkbox is selected
            {
                CheckBox cb;
                cb = (CheckBox)gvMyAuctions.Rows[i].FindControl("cbSelect");

                if (cb.Checked)
                {
                    amountchecked = amountchecked + 1;
                }
            }

            if (amountchecked < 1 || amountchecked > 1)
            {
                lblMessage.Text = "Please Select only one restaurant to work with at a time.";
            }
            else
            {
                for (int i = 0; i < gvMyAuctions.Rows.Count; i++)                             //If all conditions are good pull the information from the one selected
                {
                    CheckBox cb;
                    cb = (CheckBox)gvMyAuctions.Rows[i].FindControl("cbSelect");

                    if (!cb.Checked)
                    {
                        continue;
                    }
                    else
                    {
                        string productname        = gvMyAuctions.Rows[i].Cells[1].Text;
                        string productdescription = gvMyAuctions.Rows[i].Cells[2].Text;



                        OnlineAuctionSvc.OnlineAuction pxy = new OnlineAuctionSvc.OnlineAuction();
                        int productID = pxy.GetProductID(productname, productdescription);


                        Customer user;
                        user = (Customer)Session["User"];
                        string username = user.username;



                        int x = pxy.DeleteProductDB(productID);

                        if (x > 0)
                        {
                            lblMessage.Text = "Success. You have deleted that product";
                            DBConnect objDB = new DBConnect();
                            DataSet   myDS  = pxy.ViewMyAuctions(username);

                            gvMyAuctions.DataSource = myDS;
                            gvMyAuctions.DataBind();
                        }
                        else
                        {
                            lblMessage.Text = "Error. Please try again.";
                        }
                    }
                }
            }
        }