Sir i've read your post Load on demand data in GridView on scroll using ASP.Net and jQuery AJAX at aspsnippets.com. I want to do same with div and repeater instead of table and data list.
following is my code, in this code i want to implement load on demand...
<asp:Repeater ID="rptrGallery" runat="server">
<ItemTemplate>
<div class="mix col-md-3 col-xs-4"><a class="fancybox" rel="gallery1" href="<%# Eval("ImagePath") %>" title=" Trek Name 1">
<img src="<%# Eval("ImagePath") %>" alt="" />
</a>
</div>
</ItemTemplate>
</asp:Repeater>
Thanks in advance.