I have created razor pages web application with multiple language support, it is reading the first part of URL and tries to show the content with the correspond
When trying to add the ability to add a name during registration, an error occurred when logging into the account. When I register, the login is successful, but
Is it okay to do the identity without using ASP.NET Core Identity? I ask because registration for me is teaking data from user, hash password and put data with
I want to restrict a view after a user login into system. Example: I have a register view. After a user login into system I want to block access to register vie
I am trying to add Role to my User and store the UserID and the RoleID in the UsersRoles table. var userRole = await _roleManager.FindByNameAsyn
I implemented Identity on a ASP .Net Core 5 Web Application. I already created and ran the proper database migrations. However, when I run the application and I
So here's our setup. we have Angular web app Identity server API (ASP.NET Core 6, duende identity server) Identity server config in Program.cs: builder.Serv
In ASP.net CORE 3 app, I use authentication cookie without Identity. Here is the code when a user log in. string securityStamp = Guid.NewGuid().ToString(); var
Im using Asp.net Identity V2 on MVC 5 project. Due to the nature of project , im trying to get List Of Custome Model instead of String List from GetRolesAsync p
I have a custom IdentityUser called ApplicationUser: public class ApplicationUser : IdentityUser { public ICollection<Board> Boards { get; set; } } W
I'm learning Blazor Server and have an app with an existing DbContext (EF/MSSQL) for CRUD operations. Now I'd like to implement Identity and for that I'm follow
What is the suitable service to provide email confirmation and password reset. i have tried smtp but after six attempts actually it considered those emails as s
I have been struggling with the Authorization bit in my .net core 3.0 application. My User.IsInRole("Admin") returns true but if I add [Authorize(Roles="Admin")
I'm trying to add and delete claims (roles in this case) dynamically after a successful login using Identity 2 in Asp.Net 4.5.2. My application has an authentic
I am currently working on a school project with a classmate. We've decided on making the classic setup of an Administration-client (Blazor Server) and a Member-
I have a project where I am using ASP.NET Core Identity (with IdentityServer4) for user authentication. When I use ChangePasswordAsync to change password, it is
I Try To move all my identity Tables to Schema "User" using the following code in my context. it works fine for all except "AspNetUserClaims", "AspNetRoleClaims
I have a .NET Core 3.1 Web Api and I created an ApplicationUser class that inherits from IdentityUser because I need to register some others properties. But whe
I'm a PHP/MySQL developer trying to move over to other technologies like .NET Core. I'm not sure if I like the idea of switching to SQL Server over MySQL (due t
So. I created a fresh new project with Visual Studio Pro 2019 (v16.11.9) using the model ASP.NET Core with Angular. I set the authentication option to Individua