I'm 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, FolderPad, Status and CodPerfil). Authentication is working, however I'm not sure if this would be the best form of authentication since the application will be made available to N users (it can have more than 1000 logged in simultaneously) and if it is the safest and still the use 5 sessions for each user?
The link I used to implement this form of authentication was: link
If you have a better and safer idea, I'll be very grateful to receive new suggestions.