Timothy Khouri - SingingEels.com

I subscribe to the "take it apart and rebuild it" approach to learning.

November 2008 - Posts

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>
New Article: Silverlight DataBinding Basics

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

More Posts