Does anybody know how to redirect to another server/solution using ASP.NET MVC? Something like this:
public void Redir(String param) { // Redirect to anot
public ActionResult Redirect() { return new RedirectResult("http://www.google.com"); }
hope this helps :-)