Tagged Questions
0
votes
0answers
96 views
Is there a way to include multiple CDN?
I have the following bundle:
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery-1.*",
"~/Scripts/jquery.unobtrusive*",
"~/Scripts/jquery.validate*"));
How ...
0
votes
0answers
232 views
Compress/Minify JSON in AJAX requests/responses
I was checking out some of the code on Facebook, specifically the headers of the AJAX requests/responses and noticed that they seem to be compress/minified just like one would do with CSS or ...
1
vote
1answer
107 views
Using ASP.NET Javascript Bundles from the controller
I realise this breaks the MVC pattern, but there is a viable reason for doing it this way in an application I am currently building :)
What I am trying to do is output a JavaScript bundle directly ...
3
votes
1answer
712 views
Combining and minifying JS and CSS in ASP.NET MVC
I created default ASP.NET MVC 3 web application. Then I added three css and three js files to \Views\Shared_Layout.cshtml view:
<!DOCTYPE html>
<html>
<head>
...
0
votes
1answer
59 views
Meleze.web and Web.Config transformation
I'm using the Meleze.Web library for my web application and I want to add the compression only on release builds.
I tried to do a web.config transformation but in the Web.Release.config file, when I ...
0
votes
0answers
324 views
Minification and GZip won't work together
I am using the bundling and minification support to minify my css and Javascript files in my MVC 3 project. The minification works fine but the minified files seem to pass through without compression ...
6
votes
3answers
399 views
MVC - HTML minification is it worth it?
http://cestdumeleze.net/blog/2011/minifying-the-html-with-asp-net-mvc-and-razor/
This sounds like a reasonable way to minify HTML; My question is if this could be worth it, or if it introduces ...
1
vote
3answers
938 views
Combining javascript and css files with Rejuicer in ASP.NET MVC
I'm trying to integrate Rejuice (github page is here) to my asp.net mvc project to combine js files. I downloaded it via nuget. It successfully added references and configured web.config file.
In ...
1
vote
1answer
306 views
Asset Management (CSS/Javascript) with lots of widgets?
I'm currently porting an internal web portal from Web Forms to MVC. Most programs are provided as small widgets/gadgets. Each user typically has 10-15 widgets that they use.
I've been unable to find ...
0
votes
1answer
252 views
using Meleze.web with razor generator
I use RazorGenerator for my mvc views, now i try to optimize my views html with meleze.web but it just no work.
I have review the configuration several times and everything is fine in ...
1
vote
4answers
166 views
Minification for Css/Js - right way?
In my project each page has a bunch of dependent Javascript and Css. Whilst developing I just dumped this code right into the page but now I'm looking to clean it up...
it appears that the general ...
1
vote
2answers
1k views
ASP.Net MVC Razor Views - Minifying HTML at build time
Firstly, whilst I'm aware that gzipping HTML would probably have as much (more?) of a performance gain as minifying HTML - I am certainly intrigued by whether the following technique could work - or ...
4
votes
2answers
985 views
Should I use minified or regular versions of jQuery plugins during development and deployment?
As many of you know, most jQuery (or javascript, for that matter) plugins you find these days can be downloaded as either regularly formatted code, minified version, or both. For development purposes, ...
2
votes
2answers
2k views
How to Optimize Combres Settings (Compression, Minification)
Can anybody tell me the most optimal Combres settings? I've got the following but it appears as though my CSS and my JS are not being minified.
<?xml version="1.0" encoding="utf-8" ?>
...
1
vote
2answers
742 views
Most flexible minimizer/compressor for ASP.NET MVC 2?
From your experience, what's the most flexible minimizer/compressor (JS+CSS) for ASP.NET MVC you've dealt with?
So far
mbcompress doesn't seem to be too MVC friendly
weboptimizer.codeplex.com lacks ...
11
votes
3answers
4k views
Minify HTML output from an ASP.Net MVC Application
This is likely a duplicate of the below question but the only answer is a dead link:
http://stackoverflow.com/questions/255008/minify-html-output-of-asp-net-application
When working with ASP.Net one ...
3
votes
1answer
392 views
Enumerating Folders With MSBuild
I am coming up on the end stages of an Asp.Net MVC 1.0 project in VS2008 / Framework 3.5, and trying to do some performance optimizations. In my project, I have a few different "themes" that are used, ...
0
votes
2answers
191 views
Problem with special characters when Minifying JS
I'm using MVC ScriptManager to Compress and concatenate all my .js files. It works very well, except that if a *.js has a special character such as "á, à" it turns to "Ã!".
I'm trying to change the ...
40
votes
8answers
13k views
Concatenate and minify JavaScript on the fly OR at build time - ASP.NET MVC
As an extension to this question here Linking JavaScript Libraries in User Controls I was after some examples of how people are concatenating and minifying JavaScript on the fly OR at build time. I ...
1
vote
2answers
1k views
Updating javascript references after minifying during build process
What are the best ways of updating javascript references after minifying them (I use YUI Compressor)?
I am using ASP.NET mvc and have a bunch or javascript references in each file during dev. At ...