CompositeScript without Microsoft Ajax JavaScript

I am currently using the CompositeScript function for System.Web.Extensions to combine JavaScript files to reduce load times. However, by including any script manager, MicrosoftAjax JavaScript code is included in my pages. I do not want this to happen, as it adds a lot of unnecessary code, and this complicates the handling of events.

I am looking for one of the following:

  • An alternative to the Microsoft script manager, which combines JavaScript files, does not include MicrosoftAjax and still allows user controls to add scripts to the compound script.
  • A way to convince Microsoft script Manager not to generate JavaScript, which I will not indicate.
+4
source share
2 answers

Basically this is just a static class of string builders with several formatting functions, it should not be too difficult to write your own script manager class if there is no way to stop it from emitting an ajax script framework.

0
source

All Articles