Skip to content

Instantly share code, notes, and snippets.

@pparadis
Created October 22, 2014 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pparadis/d2f5283ad3037f0938f3 to your computer and use it in GitHub Desktop.
Save pparadis/d2f5283ad3037f0938f3 to your computer and use it in GitHub Desktop.
ASP.NET MVC Redirection 307
public ActionResult About()
{
HttpContext.Response.AddHeader("Location", "/Home/Contact");
return new HttpStatusCodeResult(307);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment