Is it possible to add a model binder for something like this?

public class Foo {

    public TagCollection Tags { get; set; }

    public Test() {
        Tags = new TagCollection();
    }

}
link|improve this question

60% accept rate
Sure, but implementation depends on how the input is gathered. – BuildStarted Oct 29 '11 at 16:08
@BuildStarted Alright, this is what I'm trying to do pastebin.com/TbVeNa1W – Marcus Oct 29 '11 at 16:46
Specifically I meant does each tag have it's own input box or is it comma/space/whatever separated? I would look into implementing IModelBinder rather than inheriting from DefaultModelBinder. – BuildStarted Oct 29 '11 at 17:10
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.