Ok, I'm not very fond of javascript, so anything that facilitates working with it has my interest. jQuery does that job and is therefore getting more and more popular these days, proven by its intellisense support in VS2008. anyway, you can learn everything about it on their website, I just wanted to point out there [...]
Archive for December, 2008
Using the ASP.NET compilation tool
I'm automating the build/deployment process of my web app. This includes the "publish"-step. (right-mouse on the web project -> publish). The dialog presented is just a visual wrapper around the aspnet_compiler.exe. quote from msdn: "The ASP.NET Compilation tool enables you to compile an ASP.NET Web application, either in place or for deployment to a target [...]
Handling multiple selections in a MVC form
Ok, I found something really cool today! I have multiple checkboxes that the user can select, and I was struggling to retrieve the selected values in my controller. Luckily, mvc offers some great assistence; check out this code: [cc]