I love how pluggable ASP.NET MVC is... this last article was fun, and I'm half tempted to start coding in HoTMeaT!
Here's a snippet of the good stuff:
<ul>
<listView source="{ViewData People}">
<itemTemplate>
<li>{Binding LastName}, {Binding FirstName}</li>
</itemTemplate>
</listView>
</ul>
And here's the HTML that it generates:
<ul>
<li>Khouri, Timothy</li>
<li>Carter, Jonathan</li>
<li>Sheppard, Travis</li>
</ul>
It's been a little while since I've written an article. My excuses are a new job, and StackOverflow :)
I've been getting heavily into WPF lately, and it reminded me that I have been neglecting Silverlight on SingingEels... so here's the latest article: Silverlight DataBinding Basics