C# code : public void FillGallery() { try { tbl_images[] _imgobj = new ImagesManager().GetAll(); HtmlGenericControl htmlul = new HtmlGenericControl(); htmlul.TagName = "ul"; htmlul.Attributes.Add("id", "filter-item"); foreach (tbl_images _img in _imgobj) { HtmlGenericControl html = new HtmlGenericControl(); html.TagName = "li"; html.Attributes.Add("class", "grid_4"); html.InnerHtml = " <figure class=\"portfolio\"> <a class=\"portfolio-image\" href=\"portfolio3.html\"><img src=\"Files/" + _img.image_data + "\" alt=\"portfolio\" width=\"50\" height=\"50\" /> </a>" + " <div c ...

Go to the complete details ...