Hello everyone,
I used ImageGallery to show some collections of photographs. The problem is the slowness of the initial load.
Each gallery has 200/250 photos, each photo is 60/70kb ...
I think the slowness is due to loading all the thumbnails.
How can I fix?
Thank you
client side code:
server side code:
I used ImageGallery to show some collections of photographs. The problem is the slowness of the initial load.
Each gallery has 200/250 photos, each photo is 60/70kb ...
I think the slowness is due to loading all the thumbnails.
How can I fix?
Thank you
client side code:
<telerik:RadImageGallery ID="galRoom" runat="server" Width="100%" BackColor="#F4F4F4" Culture="it-IT" DisplayAreaMode="Thumbnails" > <ThumbnailsAreaSettings Height="608px" ThumbnailHeight="150" ThumbnailWidth="150" ThumbnailsSpacing="2" /> <ImageAreaSettings ShowDescriptionBox="False" Height="730" /> <ToolbarSettings ItemsCounterFormat="Fotografia {0} di {1}" /> <ClientSettings> <AnimationSettings SlideshowSlideDuration="3000"> <NextImagesAnimation Type="Random" /> <PrevImagesAnimation Type="Random" /> </AnimationSettings> </ClientSettings></telerik:RadImageGallery>server side code:
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load galRoom.ImagesFolderPath = "events/ev1"End Sub