Archive for

April 2009

Delta Spirit

http://www.deltaspirit.net/

Excellent Music. Saw them in February. It was fun.

Posted

Nothing changes: 

If success is rare and slow, everybody knows how quick and easy ruin is.

William Makepeace Thackeray. Vanity Fair. 1848

Posted

Humankind cannot stand very much reality.

T. S. Eliot

Posted

Laughter and tears are both responses to frustration and exhaustion. I myself prefer to laugh, since there is less cleaning up to do afterward.

Kurt Vonnegut

Posted

Zebra (alternating color) Tables in ASP.NET

This is just a small note to say that I love doing this:

<tr class='<%# ((IDataItemContainer)Container).DisplayIndex % 2 == 0 ? "CommonListRow" : "CommonListRowAlt"  %>'>

When using any type of ASP.Net repeating control (such as asp:Repeater). It is much more maintainable than copying and pasting code between the <ItemTemplate> and <AlternatingItemTemplate>.

Posted