*** Update ***: I’ve also created a cheap jQuery plugin for this as well. See the bottom of the post There’s a lot of talk on Twitter today about IE6. I’m building a web application in my free time and I didn’t want to support IE6. Will I lose users? Yes, a few, but I…
Continue Reading »
I’m using the ASP.NET MVC REST Toolkit for a REST API I’m building for a mobile infrastructure. Long story short, it will be responsible for service hundreds of thousands (if not millions) of users through their mobile phones and rich applications (Android, iPhone and eventually the WP7 Phones). The one thing that the Toolkit did…
Continue Reading »
Steve Sanderson has a great post on how to perform list binding with MVC2 and custom HTML Prefix Scoping. However, it did not demo the out of box functionality that MVC2 provides, so I’m going to do that here. Please note, I’m using MVC2 RC2 in this example. At the end if this post you…
Continue Reading »
In MVC1, TempData did not persist: The value of TempData persists only from one request to the next. (source) This has changed in MVC2. The TempData dictionary will not persist data until the key is read from the dictionary. …We’ve changed the implementation in MVC 2 slightly as a result: the value will be removed…
Continue Reading »