Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
880 views

MVCContrib input builder vs MVC 2 editor templates

Is there any comparison? Pros and cons?
0
votes
3answers
142 views

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#" ...
0
votes
2answers
592 views

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 ...