how to Reduce Requests from website for images which are dynamic

93 Views Asked by At

We have hosted a website containing dynamic images, coming from a folder.(c# is my back end) Load time of page is around 13 sec, which I watched in tools.pingdom.com . To reduce that load time We used handler to call all the J query files in single request, which works great. but we are unable to find a solution to make a request from website to get all the images in single request. Since the images are dynamic we can't go with sprites. Please give us a solution.

And also please suggest us which way of storing images makes site performance fast (in DB/Folder).

1

There are 1 best solutions below

0
On

Thankq @Graham Ritchie, As peryour comment i have played with jquery and found a solution. i.e i have added my src to data-src. aftermy pageload i shifted my data from data-src to src. so that my page loadtime isreduced. now my page is loading between 3-5 sec.