FluentHtmlWriter

This .net project came out of a response I gave to the following question on stackoverflow:
http://stackoverflow.com/questions/414605/fluent-interface-for-rendering-html/

I wanted a fluent way of outputting html content with the dual goals of

The fluency is achieved by creating extension methods for the System.Web.UI.HtmlTextWriter for each html tag, and in each method returning an instance of the writer (thus enabling method chaining).

Examine the Program.cs class in the FluentHtmlWriterClient console application for an example of how to use the FluentHtmlWriter.