I used .ashx handler for getting images from database.I want to retrieve a lot of images (>1000) in this way:
<img src='GetImage.ashx?id= <%# Eval("id") %>'/>
(why I do this you can understand if read my previous question: bind database image to ItemTemplate in .ascx ).I am afraid that multipiles database querys (first query to get all id's,all others for getting image one by one) will take a lot of time,is it? What are possible solutions?