I have an MVC 4 application that displays a list of results from a search in a WebGrid. The results page loads correctly displaying all of the data matching the search. If I reload the page I get...
"A data source must be bound before this operation can be performed."
I am not display the WebGrid is a partialView, as I have seen questions similar to this with relation to a partial view. Anyone have an idea as to why a refresh would cause a loss of data?
EDIT:
Here is my controller method for the Results page.
public ActionResult Results()
{
var model = TempData["Results"] as List<iCap.Business.Complaint>;
return View(model);
}
I noticed TempData["Results"] resets upon refresh. Is there anyway to prevent that?
Thanks always,
Rock
Found the answer to my problem here: https://stackoverflow.com/a/11194300/2682614. TempData does reset upon refresh so I am now using seesion instead.
Hope this helps anybody else with a similar problem!
Rock