I am about to complete our ASP.NET WebForms project and am trying to make the changes suggested by tools like YSlow and others. We use the built-in set and minimization that came with .NET 4.0 for the files we added to the project, but there are a few more JavaScript files that include the WebForms framework: ScriptResource.axdandWebResource.axd
I looked around and found many third-party solutions on how to get this file in order to minimize it, but all these solutions were several years before the JS compressor was built into the infrastructure. Now that it's built in, it seems like it should be possible to use it somehow.
How can I get these files *.axdto get abbreviated output?
source
share