I have a post action in my MVC something along the line of:
public ActionResult FilterData() {
// Do some work
// ....
if (lastView != null) {
return View(lastView);
}
return View("Default");
}
Where do I find "lastView" so I can return the user to wherever they were at before postback?