Beispiel #1
0
    /// <summary>
    /// Check the Category to the particular Product
    /// </summary>
    public void BindEditCategoryList()
    {
        ProductCategoryAdmin productCategoryAdmin = new ProductCategoryAdmin();

          if (productCategoryAdmin != null)
          {
              DataSet MyDataset = productCategoryAdmin.GetByProductID(ItemID);
              foreach (DataRow dr in MyDataset.Tables[0].Rows)
              {
                  this.PopulateEditTreeView(dr["categoryid"].ToString());
              }
          }
    }