views:

71

answers:

1

how to redirect from a action to an external web site like paypal

+1  A: 
public ActionResult Index() {
    return Redirect("http://www.paypal.com");
}
Max Toro