Пример #1
0
        private void BindGallaryCategories()
        {
            Cs_Gallary cs_Gallary = new Cs_Gallary();
            DataTable  dt         = cs_Gallary.GetGalaryCategories(Convert.ToString(Session["UserID"]));

            dlGallaryCategories.DataSource = dt;
            dlGallaryCategories.DataBind();
            if (!(dt.Rows.Count > 0))
            {
                dlGallaryCategories.Visible = false;
                divImgCategory.InnerHtml    = "<Center><h3>There is no category, Please add one!</h3></center>";
            }
        }