Hi There,
I'm working on a page that's based on VS2013's default ASP.NET 4.5 web forms site... y'know, the light blue and white one. Anyway, I'm using a few standard JavaScript tools, a bit of jquery and some regular ASP controls. I found that the page pauses for
a little bit as it loads so I used the IE F12 developer tool to show me what the delay was. Here's the problem...
Request GET /default.aspx?_TSM_CombinedScripts_=True&v=ZaMfZ6yYhPPHZ1NeEf8j6-t902-6pHpn2MehV0eep-I1&_TSM_Bundles_=&cdn=False HTTP/1.1
There's a delay (gap) of around 1.5-3 seconds between the request being made and the content starting to download. I assume that the delay is caused by the web server combining the scripts into a bundle (1.15Mb in size.) Do you think that this is the case?
If so, can I have the site pre-build the script bundle so that this delay is removed?
(Sorry if I'm talking nonsense, I'd just like to remove this pause if pos ...
Go to the complete details ...