When I post back to my controller all values for my model are null

The DefaultModelBinder does not set the value of fields, only properties. You need to change you model to include properties

public class LetterViewModel
{
    public string LetterText { get; set; } // add getter/setter
}

Leave a Comment