7
I am implementing authentication in my ASP.NET MVC application. I am using FormsAuthentication
for this authentication of each user and for each logged in user 5 Sessions are assigned (Name, Codsetor, Pastapadrao, Status and Codperfil). The authentication is working, however I am not very sure if this would be the best form of authentication given that the application will be available to N users (can have more than 1000 logged in simultaneously) and whether it is the safest and still by using 5 sessions for each user?
The link I used to implement this form of authentication was : http://www.devmedia.com.br/asp-net-mvc-autenticacao-basica/20255
If you have any better and safer ideas, I would be most grateful to receive new suggestions.
Guys, after searching other sources I saw that Asp.net mvc provides an efficient and secure form of authentication known as IDENTITY. Now I’m struggling to add this tool in a project to part of the main project.
– urlflavio