Hi, one of the things we're trying to do according to YSlow is to reduce the HTTP Requests by combining as many of the javascripts files as possible. In the latest AjaxControlToolkit we are able to combine scripts (and minify them) by doing this:
<ajax:ToolkitScriptManager ID="ScriptManager1" runat="server"><CompositeScript><Scripts><asp:ScriptReference Name="MicrosoftAjax.js" /><asp:ScriptReference Name="MicrosoftAjaxWebForms.js" /> other scripts......</Scripts></CompositeScript></ajax:ToolkitScriptManager>
However, when using YSlow we noticed that one WebResource.axd file that's always downloaded separately on all of the pages, and YSlow complains that it's not minified. This file contains functions like WebForm_PostBackOptions() and WebForm_DoCallback().
I would like to know what the file is called and how we can combine it with the other scripts, if possible.
Any ideas?
Thank you.