Input Builders for ASP.NET MVC in the works

Subscribe to my feed here:  http://feeds.jeffreypalermo.com/jeffreypalermo

 

Eric Hexter has started a multipart series on Opinionated Input Builders.  They are expression-based, meaning they eliminate the need for most strings for Html Helpers in your views.  They look like this:

<%=Html.Input(x=>x.FirstName)%>

 

And the output on the screen is:

First Name*: ______________ ex:John
 
Eric is collecting feedback and opinions now because this will eventually go into MvcContrib.  It is being tested on a few small, low-risk projects at Headspring Systems to ensure that they suit a general need.