Пример #1
0
        protected void btnAdd_Click(object sender, EventArgs e)
        {
            string BrandId = this.lblBrandId.Text;
            string Name = this.txtName.Text;
            string Descn = this.txtDescn.Text;

            Maticsoft.Model.Brand model = new Maticsoft.Model.Brand();
            model.CategoryId = Label1.Text;
            model.BrandId = BrandId;
            model.Name = Name;
            model.Descn = Descn;

            Maticsoft.BLL.Products.Brand bll = new Maticsoft.BLL.Products.Brand();
            bll.Update(model);
            Response.Redirect("index.aspx");
        }
Пример #2
0
        protected void btnAdd_Click(object sender, EventArgs e)
        {
            string BrandId = this.lblBrandId.Text;
            string Name    = this.txtName.Text;
            string Descn   = this.txtDescn.Text;



            Maticsoft.Model.Brand model = new Maticsoft.Model.Brand();
            model.CategoryId = Label1.Text;
            model.BrandId    = BrandId;
            model.Name       = Name;
            model.Descn      = Descn;

            Maticsoft.BLL.Products.Brand bll = new Maticsoft.BLL.Products.Brand();
            bll.Update(model);
            Response.Redirect("index.aspx");
        }