Cookieless Session in ASP.NET
The Session state in any web technology depend on cookie at the client end to store and resend session id back and forth between client browser and web server. But Asp.net also supports cookieless sessions with the following attribute addition in the web.config within system.web node. With the above config setting, it carry the session id…
read more