1 Attachment(s)
Re: Web Page loads slowly?
Have you tried loading the page with FIREFOX using FIREBUG's NET window to look at your load times?
I believe Chrome has this type of display built in without installing any debuggers...
Re: Web Page loads slowly?
No I haven't but I'll look into it...
Thanks,
Re: Web Page loads slowly?
Hello,
There are also others option in terms of using ASP.Net Trace (which will let you see what methods on the server are taking a long time to run), also YSlow could give an indication of other factors too.
Gary
Re: Web Page loads slowly?
Server side slowness is a real issue...
For a few months I thought that certain web services I had were running slow due to the "size" of the "response" they built and how long it took to transmit that "response".
Found out that wasn't the problem...
I was using regular string concatenation to build my JSON response - and once I switched to STRINGBUILDER the speed in one of my tests went from over a minute to half a second.
Bottlenecks can be in obscure and also in "several" places...
Re: Web Page loads slowly?
Yes, using StringBuilder is definitely a time/resource saver!
If there is a bottle neck on the server, Trace.axd is definitely something to check. You might also want to think about adding logging to your application so that you can record how long things are taking.
Gary