redirect to url in ASP.net core

后端 未结 2 1659
花落未央
花落未央 2021-02-18 15:25

I need some help I have been working on a way to load a page from within the program.cs file created by VS 2017 and asp.net Razor but I can not work out how this is done I have

2条回答
  •  名媛妹妹
    2021-02-18 16:18

    Redirecting from a controller to a full URL is done simply by:

    return Redirect(stringFullUrl);
    

提交回复
热议问题