plz tell me how to do this pagenation i dnt want any links just give me solution my prbm i searched many articles google so
<%----%>
VerticalAlign="Bottom" />
......................................
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
bindrepe();
}
}
public void bindrepe()
{
string[] filesindirectory = Directory.GetFiles(Server.MapPath("~/images"));
List images = new List();
foreach (string item in filesindirectory)
{
images.Add(String.Format("~/images/{0}", System.IO.Path.GetFileName(item)));
}
images.Remove("~/images/blank.gif");
images.Remove("~/images/happy vans logo.png");
images.Remove("~/images/loading.gif");
Image1.ImageUrl = images[0];
dlImages.DataSource = images;
dlImages.DataBind();
}
protected void Image1_Click(object sender, ImageClickEventArgs e)
{
ImageButton pic = (ImageButton)sender;
string filename = pic.ImageUrl;
Image1.ImageUrl = filename;
}

Replies
Know the answer? Post it — somebody with the same question will find it here.