input-builders

Input builder for a DropDownList with data from DB in mvc contrib

I have something like this public class Person { public Country {get; set;} } public class PersonInput { public ImNotSureWhatShouldIUseHere Country {get; set;} } there is a input builder for Enums in mvc contrib but it's not good for me because i retrieve the data from the DB and i save the Id of the selected element not the valu...

MVCContrib input builder vs MVC 2 editor templates.

Is there any comparison? Pros and cons? ...

InputBuilder's PartialView("My") doesn't work

my viewmodel public class CaseCreateInput { [PartialView("My")] public object AreaId { get; set; } } My.aspx partialview <%@ Page Title="" Language="C#" MasterPageFile="Field.Master" Inherits="System.Web.Mvc.ViewPage<PropertyViewModel<object>>" %> <%@ Import Namespace="MvcContrib.UI.InputBuilder.Views"%> <asp:C...