1
I’m having doubts about how to implement a better form of authentication, which is safe and allows "sessions" or "cookies" with different names, making it possible to create an authentication method for users and administrators separately (without the cookie of one interfering with the other) or needing to work with roles to define the access of each.
- Is there any standard ASP.NET authentication method that works this way?
- For authentication in ASP.NET is it better (safer) to use Session or Cookie? if there is no standard ASP.NET method that has the above described.