Esempio n. 1
0
 //Fill the checkbox List  of the category
 private void FillChkList()
 {
     try
     {
         dtCategory = categoryBLLObj.BLLGetCategoryForItem();
         chkLstCategory.DataSource     = dtCategory;
         chkLstCategory.DataTextField  = "categoryName";
         chkLstCategory.DataValueField = "categoryId";
         chkLstCategory.DataBind();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }