Why doesn't the default model binder update my partial view model on postback?
- by bdnewbe
I have a class that contains another class as one of its properties.
public class SiteProperties
{
public SiteProperties()
{
DropFontFamily = "Arial, Helvetica, Sans-serif";
}
public string DropFontFamily { get; set; }
private ResultPageProperties m_ResultPagePropertyList;
public ResultPageProperties…