I have an ASP.Net MVC web application using forms authentication. I use OpenID for authentication.
At the moment, I am saving the url openID inside the Name
standard one GenericIdentity
. I would also like to have easy access to the database id for the user.
I can create a custom provider or identifier by overriding a function Application_AuthenticateRequest
.
My question is, should the uid database for the user go to the main or identifier?
Should the Name Identity property be a public URL (the user can have many of them, but I would like to display it on every page) or the uid database?
source
share