Search code examples
asp.netsessioncookiesuser-management

User management in asp.net without using cookie or session


Is it possible to perform user management (store user info, login , logout etc) without using session or cookie?

Thanks in advance.


Solution

  • There are cookieless sessions

    http://msdn.microsoft.com/en-us/library/aa479314.aspx

    If you don't want any server-state at all, you need to keep passing the state around in URLs. For login, you can use an HTTP Auth that the browser understands.