MVC 2 Editor Template for Radio Buttons
A while back I blogged about how to create an HTML Helper to produce a radio button list [http://geekswithblogs.net/michelotti/archive/2009/08/06/mvc-radiobuttonlist-html-helper-ndash-take-2.aspx] . In that post, my HTML helper was "wrapping" the FluentHtml library from MvcContrib to produce the following html output (given an IEnumerable list containing the items "Foo" and "Bar"): <div> <input id="Name_Foo" name="Name" type="radio" value="Foo" /><label for="Name_Foo" id="Name_Foo_Label">...