One of the requirements proposed for an ASP.NET application is that we have Session state disabled globally. (This is not negotiable.)
Another requirement is that we have some means for user authentication. I'm thinking of using ASP.NET's membership provider model.
Is it possible to have user authentication without Session State?
The specific user-authentication examples we're looking for are:
- User goes to website unauthenticated
- User enters registration information (contact fields, etc)
- For the remainder of their session, user has access to certain content thanks to their registered status
Is there a way to do this with cookies?
Can this be done securely, so the cookie can not be easily spoofed?
Is there built-in functionality in ASP.NET to support this, or will we need to roll our own method?