Heidel
Heidel

Reputation: 3254

Redirect to other page (asp.net mvc 4)

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

Answers (2)

blfuentes
blfuentes

Reputation: 2827

Try just

return Redirect("http://www.google.com");

Hope it helps

Upvotes: 0

Joshua H
Joshua H

Reputation: 839

You can use the RedirectToAction method.

RedirectToAction("action", "controller")

Upvotes: 2

Related Questions