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
You can use the IActionResult to return a redirection or your razor page.
public IActionResult OnGet() { if (!Auth()) { return new RedirectToPageResult("/Portal/Login"); } return Page(); }