Is there an equivalent to Ruby On Rails' redirect_to :back in ASP.NET MVC?
What about after submitting a form? For example:
From page1 user clicks a link to page2. Submits a form on page2, then I want to redirect to page1.
This works great if I hard code the redirect to go to Page1. However if the user clicks a link to page2 from page8, after submitting the form on page2, how can I redirect back to page 8 instead of page1?