Showing posts with label RedirectToAction. Show all posts
Showing posts with label RedirectToAction. Show all posts

Tuesday, 28 April 2015

ASP.NET MVC Action Return View Not Changing URL

The return View(.......) in Action of Controller is the statement that we use to return the view View for a Particular Controller Request . But Return view will return the view exactly you want and render the view but it will not change or target the user to target url  . The simple solution is below - Code For an Action - [HttpPost] public ActionResult Start(SomeViewModel...