Posted on: 11/6/2014 3:37:59 PM | Views : 405

Hi,
working in asp.net 4.5
I have a website and am dealing with binding images im repeater. It takes 8-10 sec to render the page. I tried to trouble shoot the issue using Chrome
Pagespeed add on and it says,
XXX.jpg is resized in HTML or CSS from 900x900 to 156x156. Serving a scaled image could save 370.3KiB (93% reduction).
All my images are in CDN. so i have 25 images binding on the page and from the page speed it says 7mb i can save serving if i have the scalled image.
Because i am using the below code to set the height and with for my need,
<div> <asp:Image ID="Image1" runat="server" Width="125" Height="125" /> </div> Is there any better way to increasing the response faster. as page speed says, how can i reduce the 7 mb unnecessary payload.
any help is appreciated.
Thanks

Go to the complete details ...