I created a custom string object, but it does not modelbind when I post it back to the server. Is there an attribute I'm missing on the class or something?

This is the custom string class below:

public class EMailAddress
{
    private string _address;
    public EMailAddress(string address)
    {
        _address = address;
    }
    public static implicit operator EMailAddress(string address)
    {
        if (address == null)
            return null;
        return new EMailAddress(address);
    }
}
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

In order for the object to be correctly bound by the default model binder it must have a default parameterless constructor:

public class EMailAddress
{
    public string Address { get; set; }
}

if you want to use models as the one you showed you will need to write a custom model binder to handle the conversion:

public class EmailModelBinder : DefaultModelBinder
{
    public override object BindModel(
        ControllerContext controllerContext, 
        ModelBindingContext bindingContext
    )
    {
        var email = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
        if (email != null)
        {
            return new EMailAddress(email.AttemptedValue);
        }
        return new EMailAddress(string.Empty);
    }
}

which will be registered in Application_Start:

ModelBinders.Binders.Add(typeof(EMailAddress), new EmailModelBinder());

and used like this:

public class HomeController : Controller
{
    public ActionResult Index(EMailAddress email)
    {
        return View();
    }
}

Now when you query /Home/Index?email=foo@bar.baz the action parameter should be properly bound.

Now the question is: do you really want to write all this code when you can have a view model as the one I showed initially?

link|improve this answer
Yep, this is what I was looking for Darin! Thank you! :) – Ozzie Perez Apr 13 '11 at 15:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.