How to redirect on ASP.Net Core Razor Pages

前端 未结 3 1162
無奈伤痛
無奈伤痛 2020-12-11 00:28

I am using the new Razor Pages in ASP.Net core 2
Now I need to redirect

I tried this, but the page does not redirect:

public class IndexModel : P         


        
3条回答
  •  半阙折子戏
    2020-12-11 00:46

    Same for pages without cs:

    @page
    
    @functions
    {
        public IActionResult OnGet()
        {
            string url = "/.auth/login/aad?post_login_redirect_url=" 
              + Request.Query["redirect_url"];
    
            return Redirect(url);
        }
    }
    

提交回复
热议问题