The ASP.
I create a new empty MVC project and I want to add identity to it. Now I do not know …
asp.net-mvc asp.net-identityI have a class that name is Advertisement: public class Advertisement { public string Title { get; set; } public string Desc { get; …
c# asp.net asp.net-web-api2 asp.net-identityI have a drop down list box which lists roles. I want to get the list of users having that …
asp.net asp.net-mvc asp.net-mvc-4 asp.net-identity asp.net-identity-2I am new to the ASP.NET Identity framework and am trying to do some things that I used to …
c# asp.net asp.net-mvc-5 asp.net-identityWhat is the difference between: public ActionResult Login(LoginViewModel model, string returnUrl) { if (ModelState.IsValid) { IdentityResult result = IdentityManager.Authentication.CheckPasswordAndSignIn(…
asp.net-mvc task-parallel-library async-await asp.net-mvc-5 asp.net-identityI am attempting to redirect to a different login url in ASP.NET MVC6 My account controller login method has …
c# asp.net asp.net-core asp.net-identity asp.net-core-mvcI'm in the process of creating a new application and started out using EF6-rc1, Microsoft.AspNet.Identity.Core 1.0.0-rc1, …
asp.net asp.net-identityMicrosoft recently introduced new ASP.NET Identity - replacement for old (Simple)Membership. Unfortunately, I can't use this new membership …
asp.net .net owin katana asp.net-identityI got an error using ASP.NET Identity in my app. Multiple object sets per type are not supported. The …
c# asp.net asp.net-mvc entity-framework asp.net-identityI'm following this article to delete a user in Identity 2.0 http://www.asp.net/mvc/tutorials/mvc-5/introduction/examining-the-details-and-delete-methods However, …
asp.net-mvc asp.net-mvc-5 asp.net-identity