Redirect from asp.net web api post action

前端 未结 4 931
深忆病人
深忆病人 2020-11-27 14:05

I\'m very new to ASP.NET 4.0 Web API. Can we redirect to another URL at the end of the POST action?, something like ... Response.Redirect(url)

Actually

4条回答
  •  无人及你
    2020-11-27 14:33

        [HttpGet]
        public RedirectResult Get()
        {
            return RedirectPermanent("https://www.google.com");
        }
    

提交回复
热议问题