Redirect to external URI from ASP.NET MVC controller

前端 未结 4 1012
Happy的楠姐
Happy的楠姐 2020-11-27 13:52

I\'m trying to redirect to external url from an action method but can\'t get it to work. Can anybody shed some light on my error?

public void ID(string id)
          


        
4条回答
  •  有刺的猬
    2020-11-27 14:25

    If you're talking about ASP.NET MVC then you should have a controller method that returns the following:

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

    Otherwise we need more info on the error you're getting in the redirect. I'd step through to make sure the url isn't empty.

提交回复
热议问题