hello,
i have listview which has text and images, images takes time to load and whole page stuck.
i want that listview load first with text then image load and by that time user see gif loading so page can quickly be open and then one by one image is coming
please advice
<asp:ListView ID="ListView1" runat="server" OnItemDataBound="ListView1_ItemDataBound">
<ItemTemplate>
<div class="swiper-slide shadow2">
<div class="padding15">
<div class="box-start">
<asp:Image ID="Image1" runat="server" Width="50px" CssClass="img-circle border" ImageUrl='<%#Eval("image") %>' Height="50px" />
</div>
<h5 class="line20">
<%#Eval("fullname") %> <br />
<i class="s-bold"><%#Eval("category") %></i>
</h5>
<p class="s-bold line20 ">
<%#Eval("reviews") %>
</p>
</div>
</div>
</ItemTemplate>
</asp:ListView>