In the quest to create an elegant web interface using MVC, I had begun to add more and more JavaScript to my views. Using great tools like jquery, Knockout, AJAX, modernizr, and underscore I began improving the interactivity and responsiveness of my web pages. At first the UI code seemed fairly simple, and I even … Continue reading I’m using MVC4, why do I need Require.js? – or – Why is my JavaScript such a mess?
Tag: MVC
Also known as watch the precedence order of your registrations! We have recently begun switching our MVC project to leverage the Areas feature in MVC. This is a big benefit and allows us to organize our application functionally as opposed to by file type. As an example it allows us to put everything about updating … Continue reading ASP.NET MVC – Why doesn’t my area route registration work?
Recently we upgraded an MVC 3 application to MVC4 and wanted to take advantage of the new bundling and minification functionality for our css and js files. There are some great articles on the asp.net site about how to use all of these new features: http://www.asp.net/mvc/tutorials/mvc-4/bundling-and-minification Initially I tested it out on a brand new … Continue reading ASP.NET MVC4 Bundling and Minification: Where did System.Web.Optimization go?