Basically what the title says. It even hits the breakpoint on the targeted action method and debugs through the cshtml file. But it doesn't seem to do anything with the website. Though the network tab of chrome dev tool, retrieves the Survey page and has a status of 200.
return RedirectToAction("Survey");
Edit for clarity
I have a CreateSurvey view which submits and triggers my POST action method. In the POST action method it goes through the statement.
return RedirectToAction("Survey");
and hits the breakpoint of the Survey HttpGet action method and its corresponding view, but when I tab back to my site I didn't redirect. When I check the network tab in my chrome dev tools. The browser receives the Survey page request with a status of 200 but is still in the CreateSurvey page.