When I navigate to /Controller/Action in ASP.NET MVC, the action returns a View and the browser URL is updated. How could I keep the URL intact but return the requested View at the same time?
For example, /Home/Index would return the View for Index whereas /Home/SignUp would return a different View. I want to make sure after both calls, the URL stays the same.