Redirect to another server - ASP MVC

后端 未结 3 1295
野趣味
野趣味 2021-01-07 14:44

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         


        
3条回答
  •  不知归路
    2021-01-07 15:26

    // It was not working in my case so I did some trick here.

    public ActionResult Redirect()
    {
         return new PermanentRedirectResult ("http://www.google.com");
    }
    

提交回复
热议问题