i have an aspx page which contains script references to many javascript and css files(about 10 or more). the problem is as you would expect is the slow loading time of the page. i tried to move some of the scripts to the end of the page but this did not make any difference. my question is how to deal with numerous script files in order to speed up page load time
Share
You can use code obfuscators to minimize the size of your files. I normally use Dojo’s shrinksafe for javascript:
http://o.dojotoolkit.org/docs/shrinksafe
Or the YUI Compressor: http://developer.yahoo.com/yui/compressor/
and code beautifier for css: http://www.codebeautifier.com/
but there are many others out there. You just need to be sure to do a full regression test after you compress.