How can I return to the "previous" view from an action in the controller ?
I have an action that can be reached from 2 different views.
The action can result in 2 ways:
Success - and then I return to 3rd different view Failure - and then I want to return to the previous view (one of the 2) - having the same (old) model data with a TempData["Message"] containing the error.
I want to return to the view that posted to this action - How can I achieve this behavior ?