I'm using Telerik reports in an asp.net MVC project.
A report I'm trying to generate is failing before it gets started, in the [HttpPost] ActionResult in the Controller; I reckon because "if
(ModelState.IsValid)" is returning false.
I didn't know what IsValid was; on investigation, I see that it is defined in System.Web.Mvc.ModelStateDictionary
So what are the causes of a ModelStateDictionary being invalid? What should I examine or verify?
A report I'm trying to generate is failing before it gets started, in the [HttpPost] ActionResult in the Controller; I reckon because "if
(ModelState.IsValid)" is returning false.
I didn't know what IsValid was; on investigation, I see that it is defined in System.Web.Mvc.ModelStateDictionary
So what are the causes of a ModelStateDictionary being invalid? What should I examine or verify?