コード例 #1
0
 private void BindContents(int categoryID)
 {
     try
     {
         DataTable contents = AdminContents.GetContents(categoryID);
         ContentGrid.DataSource = contents;
         ContentGrid.DataBind();
         //logger.Debug("contents - " + contents.Rows.Count);
     }
     catch (Exception ex)
     {
         logger.Error("BindContents Exception - " + ex.Message);
     }
 }