I am working on ASP.NET 3.5.I am using 5 or 6 Ajax Panels on the homepage as well as some other Rad Controls.The problems is : these controls required too much javascript http calls in begining which slows up the application quite badly.When I tested the page through fiddler , it shows that there are 6 javascript http calls comprising 160KBs.When I replaced the ScriptManager with RadScriptManager , it considerably reduced http calls and size to 130KB by combining and compressing those calls into a single http call. ----- Is there a way that I can further reduce the size of Javascript call or at least load them at the end of page so that my Page is visible to users and Javascript is downloading side by side. At the same time if a user tries to use any java functionality it'll warn them that it is laoding right now.
Thanks
Thanks