February 19 2022 by
Admin
In this article, we will explain how to use Authorize filter in ASP.NET CORE . Here we are using AuthenticationScheme
to Controller authorize.
In this article, we will explain how to use Authorize filter in ASP.NET CORE . Here we are using AuthenticationScheme
to Controller authorize . We have taken login page and Dashboard page for this activity first user login after that user can access dashboard page without login user can not access dashboard page.
Required Namespaces
We will need to use the following namespaces.
LoginController
we have created login controller and we are assigning UserName
value in claims.
Index.Cshtml
We have created login html page you can see below.
DashboardController
We have created Dashboard page without login can't access because we are using AuthenticationSchemes
.
HomePage.Cshtml
We have created HomePage
Startup.cs
We have added AddAuthentication
service inside ConfigureServices in method .
Note: All contents are copyright of their authors.