protected void Button1_Click(object sender, EventArgs e)
        {
            int er = 0;

            lblMessage.Text = "";

            if (txtProductName.Text == "")
            {
                er++;
                RequiredFieldValidator1.Text = "Required";
            }
            if (txtProductPrice.Text == "")
            {
                er++;
                RequiredFieldValidator3.Text = "Required";
            }
            if (er > 0)
            {
                return;
            }

            DAL.product p = new DAL.product();
            p.Name         = txtProductName.Text;
            p.Descriptioin = txtProductDescription.Text;
            p.CategoryId   = Convert.ToInt32(ddlProduct.SelectedItem.Value);
            p.price        = Convert.ToDouble(txtProductPrice.Text);
            p.Image        = System.IO.Path.GetFileName(fileImg.FileName);

            if (p.Insert())
            {
                lblMessage.Text      = "Data Inserted";
                lblMessage.ForeColor = System.Drawing.Color.Green;

                fileImg.SaveAs(Server.MapPath("uploads/productImages/" + p.Image));
            }
            else
            {
                lblMessage.Text      = p.Error;
                lblMessage.ForeColor = System.Drawing.Color.Red;
            }
        }
Exemplo n.º 2
0
 public int insert(Model.product mym)
 {
     DAL.product dal = new DAL.product();
     return(dal.Insert(mym));
 }