Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I'm running some SEO tools and need to minify axd files. How could I do this?
Hi Bob
Why do you have axd files on your pages?
What did you use?
Thanks,
Alex
Hi, I created a control and all of a sudden I'm seeing scriptresource.axd and webresource.axd
Did you use something special in your control?
UpdatePanel, GridView?
can you show source code of control?
thanks,
It's better do not use such controls, because they are heavy.
For general minifications try to use Optimus package - https://our.umbraco.org/projects/developer-tools/optimus/
Minifying an AXD file (assuming you mean a .NET HTTP handler) makes no sense - it's a compiled, binary file. I'm assuming you actually want to minify the files served by the handler?
You could use the Client Dependency Framework (that Umbraco uses in the backend to minify files) in your front-end - see https://github.com/Shazwazza/ClientDependency
Or you can use my prefered way which is to use MVC bundling and minification via WebGrease - see https://docs.microsoft.com/en-us/aspnet/mvc/overview/performance/bundling-and-minification and https://www.nuget.org/packages/WebGrease/
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Minify files
I'm running some SEO tools and need to minify axd files. How could I do this?
Hi Bob
Why do you have axd files on your pages?
What did you use?
Thanks,
Alex
Hi, I created a control and all of a sudden I'm seeing scriptresource.axd and webresource.axd
Hi Bob
Did you use something special in your control?
UpdatePanel, GridView?
can you show source code of control?
thanks,
Alex
Hi Bob
It's better do not use such controls, because they are heavy.
For general minifications try to use Optimus package - https://our.umbraco.org/projects/developer-tools/optimus/
Thanks,
Alex
Minifying an AXD file (assuming you mean a .NET HTTP handler) makes no sense - it's a compiled, binary file. I'm assuming you actually want to minify the files served by the handler?
You could use the Client Dependency Framework (that Umbraco uses in the backend to minify files) in your front-end - see https://github.com/Shazwazza/ClientDependency
Or you can use my prefered way which is to use MVC bundling and minification via WebGrease - see https://docs.microsoft.com/en-us/aspnet/mvc/overview/performance/bundling-and-minification and https://www.nuget.org/packages/WebGrease/
is working on a reply...