Redirect to external URI from ASP.NET MVC controller

前端 未结 4 1057
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:08

    Maybe the solution someone is looking for is this:

    Response.Redirect("/Sucesso")
    

    This work when used in the View as well.

提交回复
热议问题