I'm currently using the CompositeScript feature of System.Web.Extensions in order to combine my JavaScript files to reduce download time. However, by including any script manager, the MicrosoftAjax JavaScript code is included in my pages. I do not want this to happen as it adds a lot of unneeded code and it complicates event handling.
I'm looking for one of the following:
- An alternative to the Microsoft Script Manager that combines JavaScript files, does not include MicrosoftAjax, and still allows user controls to add scripts to the composite script.
- A way to persuade Microsoft's Script Manager to not emit any JavaScript that I don't specify.