If I'm developing an application that must accommodate multiple security levels though secure login and my ASP.NET web application is spanned across three web-servers (using round-robin load balancing) what would be the best approach to maintain login-in state for the users?

Options
- Maintain the login state security through a database.
- Maintain the login state security through a Session.
- Maintain the login state security through a View State.
- All of the Above


CORRECT ANSWER : Maintain the login state security through a database.

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement