I have an asp repeater which displays all my images as small thumbnails. The load times are becoming ridiculous because in some of the folders there are 3000+ images. Is there a way i can keep my existing code and use lazy loading? I've tried a couple things but they do not work, one of them involved changing my <img src> to <img data-src>
which is not acceptable in this case.
<asp:Repeater ID="Thumbnails" runat="server">
<img id = thumbImages
src='images/thumbs/<%#Eval("FileName") %>'
alt='images/<%#Eval("FileName") %>'
height="100"
width="150"
class="imageCount"/>
<asp:Repeater>