Redirect to external URI from ASP.NET MVC controller

前端 未结 4 1059
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:26

    Try this (I've used Home controller and Index View):

    return RedirectToAction("Index", "Home");
    

提交回复
热议问题