How do you RedirectToAction using POST instead of GET? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:33:11Z http://stackoverflow.com/feeds/question/129335 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-instead-of-get 7 How do you RedirectToAction using POST instead of GET? Chris Pietschmann 2008-09-24T19:30:30Z 2009-10-01T17:03:07Z <p>When you call RedirectToAction within a Controller, it automatically redirects using an HTTP GET. How do I explicitly tell it to use an HTTP POST?</p> <p>I have an Action that accepts both GET and POST requests, and I want to be able to RedirectToAction using a POST and send it some values.</p> <p>Like this:</p> <p>this.RedirectToAction("actionname", new RouteValueDictionary(new { someValue = 2, anotherValue = "text" }));</p> <p>I want the someValue and anotherValue values to be sent using an HTTP POST instead of a GET. Does anyone know how to do this?</p> http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-instead-of-get/129361#129361 12 Answer by Eli Courtwright for How do you RedirectToAction using POST instead of GET? Eli Courtwright 2008-09-24T19:35:02Z 2008-09-24T19:35:02Z <p>HTTP doesn't support redirection to a page using POST. When you redirect somewhere, the HTTP "Location" header tells the browser where to go, and the browser makes a GET request for that page. You'll probably have to just write the code for your page to accept GET requests as well as POST requests.</p> http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-instead-of-get/129371#129371 0 Answer by Chris Pietschmann for How do you RedirectToAction using POST instead of GET? Chris Pietschmann 2008-09-24T19:35:55Z 2008-09-24T19:35:55Z <p>Here's a question that is similar (on the same topic), but different than this one. Anyway, it still may be of interest to those interested in this question:</p> <p><a href="http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-aspnet-mvc-preview-4-without-losing-request-data">http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-aspnet-mvc-preview-4-without-losing-request-data</a></p> http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-instead-of-get/1343182#1343182 0 Answer by Jason Bunting for How do you RedirectToAction using POST instead of GET? Jason Bunting 2009-08-27T19:06:41Z 2009-08-27T19:06:41Z <p>For your particular example, I would just do this, since you obviously don't care about actually having the browser get the redirect anyway (by virtue of accepting the answer you have already accepted):</p> <pre><code>[AcceptVerbs(HttpVerbs.Get)] public ActionResult Index() { // obviously these values might come from somewhere non-trivial return Index(2, "text"); } [AcceptVerbs(HttpVerbs.Post)] public ActionResult Index(int someValue, string anotherValue) { // would probably do something non-trivial here with the param values return View(); } </code></pre> <p>That works easily and there is no funny business really going on - this allows you to maintain the fact that the second one really only accepts HTTP POST requests (except in this instance, which is under your control anyway) and you don't have to use TempData either, which is what the link you posted in your answer is suggesting.</p> <p>I would love to know what is "wrong" with this, if there is anything. Obviously, if you want to really have sent to the browser a redirect, this isn't going to work, but then you should ask why you would be trying to convert that regardless, since it seems odd to me.</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-instead-of-get/1505209#1505209 1 Answer by unknown (google) for How do you RedirectToAction using POST instead of GET? unknown (google) 2009-10-01T17:03:07Z 2009-10-01T17:03:07Z <p>This is the correct behaviour, this pattern being known as Post/Redirect/Get</p> <p><a href="http://en.wikipedia.org/wiki/Post/Redirect/Get" rel="nofollow">http://en.wikipedia.org/wiki/Post/Redirect/Get</a>.</p> <p>So its okay to make 302 redirection from post which makes a get request.</p>