How do you redirect to a page using the POST verb?

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 … Read more