New Article: Creating a Custom View Engine in ASP.NET MVC
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>