The ASP.
I have an Article entity in my project which has the ApplicationUser property named Author. How can I get the …
c# asp.net-mvc-5 identity asp.net-identityI've done this before with MVC5 using User.Identity.GetUserId() but that doesn't seem to work here. The User.Identity …
asp.net asp.net-identity asp.net-core-mvc asp.net-core-1.0How can I get the id of the currently logged in user in MVC 5? I tried the StackOverflow suggestions, but …
c# asp.net asp.net-mvc asp.net-mvc-5 asp.net-identityI want to get a current user for getting information of a user such as an email. But I can't …
c# asp.net-core asp.net-identityI have downloaded, and successfully ran the ASP.NET Identity sample from here: https://github.com/rustd/AspnetIdentitySample I am …
c# asp.net asp.net-mvc asp.net-identityTo get the currently logged in user in MVC5, all we had to do was: using Microsoft.AspNet.Identity; [Authorize] …
c# asp.net-core asp.net-core-mvc asp.net-identityThere is very little documentation about using the new Asp.net Identity Security Framework. I have pieced together what I …
c# asp.net-mvc-5 asp.net-identityHow do we get the current user, within an secure ApiController action, without passing the userName or userId as a …
c# asp.net asp.net-web-api asp.net-identityI am wondering wether the Password Hasher that is default implemented in the UserManager that comes with MVC 5 and ASP.…
c# asp.net security passwords asp.net-identityI have seen lots of similar pages on the web, but most of them use a new project instead of …
asp.net asp.net-mvc authentication asp.net-identity owin