Reputation: 2802
Can anyone tell me about the different Redirect methods in ASP.NET MVC 5? I have user Redirect
, RedirectToAction
, RedirectPermanent
, but I am wondering which one to use in which scenario.
Please describe all the Redirect methods available in ASP.NET MVC 5 apart from these.
Upvotes: 0
Views: 1439
Reputation: 598
You can using response to redirect like:
Response.Redirect("yoururl");//you can use route like: Response.Redirect("~/Home/About");
Upvotes: 1
Reputation: 3738
All redirect internally do the same (HTTP 302 or HTTP 301). Methods differ how they resolve url to redirect:
Upvotes: 3