public void ViewBrand() { BrandBSO brandBSO = new BrandBSO(); DataTable table = brandBSO.GetBrandAll(Language.language); commonBSO commonBSO = new commonBSO(); commonBSO.FillToGridView(grvBrand, table); }
private void ViewBrand(string lang) { BrandBSO brandBSO = new BrandBSO(); DataTable table = brandBSO.GetBrandAll(lang); Repeater1.DataSource = table; Repeater1.DataBind(); }
private void ViewBrand(string lang) { BrandBSO brandBSO = new BrandBSO(); DataTable table = brandBSO.GetBrandAll(lang); DropDownList1.DataSource = table; DropDownList1.DataTextField = "BrandName"; DropDownList1.DataValueField = "BrandUrl"; DropDownList1.DataBind(); }