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
// It was not working in my case so I did some trick here.
public ActionResult Redirect() { return new PermanentRedirectResult ("http://www.google.com"); }