URL-Encoded post parameters don't Bind to model
- by Steven Klein
I have the following Model
namespace ClientAPI.Models {
public class Internal {
public class ReportRequest {
public DateTime StartTime;
public DateTime EndTime;
public string FileName;
public string UserName;
public string Password;
}
}
}
with the following…