Explain the cookie less session and its working.
2296
01-Sep-2014
Sumit Kesarwani
01-Sep-2014ASP.NET manages the session state in the same process that processes the request and does not create a cookie. It is known as a cookie less session. If cookies are not available, a session is tracked by adding a session identifier to the URL. The cookie less session is enabled using the following code snippet: <sessionState cookieless="true" />