On facebook if you click an image it will take you directly to that image in that folder and display prev and next buttons.
I have created two versions of my image pages, one you click an image and it shows a bigger version but without prev and next buttons SQL=select * from images where id = requestquerystring("id") and another using paging but this pulls back all the images starting from the first it finds SQL=select * from images where user = request.querystring("user")
How do I do both so I can pull back all images relating to that user but start at the image selected and not at the start so I can do a facebook type thing and start at image 10 instead of image 1 each time?
Thanks
I have created two versions of my image pages, one you click an image and it shows a bigger version but without prev and next buttons SQL=select * from images where id = requestquerystring("id") and another using paging but this pulls back all the images starting from the first it finds SQL=select * from images where user = request.querystring("user")
How do I do both so I can pull back all images relating to that user but start at the image selected and not at the start so I can do a facebook type thing and start at image 10 instead of image 1 each time?
Thanks