Hi,
I want to make dynamic this Photo Gallery
http://tympanus.net/codrops/2010/10/07/slider-gallery/
so I wrote this code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.OleDb;
public partial class Default2 : System.Web.UI.Page
{
DataTable dt1;
DALBase DBase = new DALBase();
protected void Page_Load(object sender, EventArgs e)
{
string GalleryCat = string.Empty;
string Gallery = string.Empty;
dt1 = GetAllGalleryCat();
for (int i = 0; i < dt1.Rows.Count; i++)
{
GalleryCat += "<li>" + dt1.Rows[i]["Title"] + "</li>";
DataTable dt2 = GetGallery(Con ...
Go to the complete details ...