Пример #1
0
 private void BiudBrand(string CategoryId)
 {
     Maticsoft.BLL.Products.Brand bll = new Maticsoft.BLL.Products.Brand();
     DataSet ds = bll.GetlistByCategoryId(CategoryId);
     this.dropBrand.DataSource = ds.Tables[0].DefaultView;
     this.dropBrand.DataTextField = "Name";
     this.dropBrand.DataValueField = "BrandId";
     this.dropBrand.DataBind();
 }
Пример #2
0
        private void BiudBrand(string CategoryId)
        {
            Maticsoft.BLL.Products.Brand bll = new Maticsoft.BLL.Products.Brand();
            DataSet ds = bll.GetlistByCategoryId(CategoryId);

            this.dropBrand.DataSource     = ds.Tables[0].DefaultView;
            this.dropBrand.DataTextField  = "Name";
            this.dropBrand.DataValueField = "BrandId";
            this.dropBrand.DataBind();
        }