Top "Asp.net-identity" questions

The ASP.

Disable User in ASPNET identity 2.0

I am looking for a way to disable the user instead of deleting them from the system, this is to …

asp.net asp.net-identity
How to add ASP.NET MVC5 Identity Authentication to existing database

I am learning MVC5 identity authentication and was reading materials on www.asp.net. I have a few questions here. …

asp.net asp.net-mvc-5 asp.net-identity
Configure the authorization server endpoint

Question How do we use a bearer token with ASP.NET 5 using a username and password flow? For our scenario, …

c# asp.net oauth asp.net-identity asp.net-core
Updating user by UserManager.Update() in ASP.NET Identity 2

I use ASP.NET Identity 2 in an MVC 5 project and I want to update Student data by using UserManager.Update() …

c# asp.net-mvc asp.net-identity automapper asp.net-identity-2
How do I define the password rules for Identity in ASP.NET 5 MVC 6 (vNext)?

The default Identity provider provided in ASP.NET 5 has very strict password rules by default, requiring a lower case character, …

c# asp.net asp.net-mvc asp.net-identity asp.net-core-mvc
How to extend IdentityUser with custom property

I'm using asp.net Identity 2.0 for users to log into my website, where the authentication details are stored in an …

c# .net asp.net-mvc asp.net-web-api asp.net-identity
How to create ApplicationUser by UserManager in Seed method of ASP .NET MVC 5 Web application

I can create users in the old way: var users = new List<ApplicationUser> { new ApplicationUser{PasswordHash = hasher.HashPassword("…

c# .net asp.net-identity seed asp.net-mvc-5.1
Is ASP.NET MVC 5 incompatible with the WebMatrix SimpleMembershipProvider?

We have an existing application that was build on ASP.NET MVC 4 & Web API. The admin parts of the …

c# asp.net-mvc simplemembership asp.net-mvc-5 asp.net-identity
Google Authentication using OWIN Oauth in MVC5 not hitting ExternalLoginCallback function

I am currently upgrading my login process for Google to use OAuth before they depricate their OpenID login method. The …

asp.net-mvc oauth asp.net-identity owin google-authentication
How does a new ASP.NET MVC 5 application know how to create a database and how does the Account Controller access the database?

I created an ASP.NET MVC 5 Application using Visual Studio 2013 Update 2. In the application, I have an Account controller. It's …

asp.net asp.net-mvc entity-framework asp.net-mvc-5 asp.net-identity