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