Reputation: 3254
I have this code in controller
public ActionResult WhatWeDo()
{
return View();
}
but I need to create redirect to other page.
How can I do it?
Upvotes: 0
Views: 4878
Reputation: 2827
Try just
return Redirect("http://www.google.com");
Hope it helps
Upvotes: 0
Reputation: 839
You can use the RedirectToAction method.
RedirectToAction("action", "controller")
Upvotes: 2