up vote 22 down vote favorite
4
share [g+] share [fb]

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?

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.

Like this:

this.RedirectToAction(
    "actionname",
    new RouteValueDictionary(new { someValue = 2, anotherValue = "text" })
);

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?

link|improve this question

feedback

5 Answers

up vote 26 down vote accepted

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.

link|improve this answer
Curious why my answer isn't accepted, I think my rhetoric is sound. :) Then again, I may be a bit biased about it... – Jason Bunting Nov 24 '10 at 22:23
2  
While this answer is basically correct, it is not complete. See Jason Bunting answer below for a much better workaround. – Adrian Grigore Jan 10 '11 at 13:07
feedback

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):

[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();
}

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.

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.

Hope that helps.

link|improve this answer
6  
For the idiots down-voting this: why? I don't have a problem with getting a down-vote per se, but at least tell me why and what is wrong with my answer instead of merely voting it down and leaving no feedback. – Jason Bunting Nov 14 '09 at 7:25
3  
Who knows why you were downvoted. This is a very useful method. – Peter J Jun 3 '10 at 18:25
1  
Works for me too, thanks. – Simon Keep Nov 17 '10 at 17:39
4  
I voted up, although I disagree with calling people idiots when you don't know them. – Jim Schubert Jan 18 '11 at 21:38
2  
@Jim: Yeah, I shouldn't have thrown that epithet out there so easily and indiscriminately. My apologies to anyone I have offended. I blame my evidence-based, cynical view of humanity. I should have used the term "ignorant," since that's the more likely explanation. :) – Jason Bunting Feb 4 '11 at 16:40
show 1 more comment
feedback

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:

http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-aspnet-mvc-preview-4-without-losing-request-data

link|improve this answer
feedback

This is the correct behaviour, this pattern being known as Post/Redirect/Get

http://en.wikipedia.org/wiki/Post/Redirect/Get.

So its okay to make 302 redirection from post which makes a get request.

link|improve this answer
-1: How is this related to the question? – Adrian Grigore Jan 10 '11 at 13:11
feedback

if you REALLLY wanted to go from a form post -> controller method with [HttpPost] to ANOTHER controller method with [HttpPost] then (note: this is pure hax) you could redirect to a strongly typed blank view using ViewBag and fill the model with your data then use an automated onload ajax $.post call which sends a JSON object the next [HttpPost] controller. However, this violates so many conventions I would HIGHLY urge you to stick to the Post-Redirect-Get standard. Form post calls [HttpPost] controller which handles some action, then redirects to a [HttpGet] controller to display the results. MVC was designed to decouple actions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.