---
title: "Explain the cookie less session and its working."  
description: "Explain the cookie less session and its working."  
author: "Sumit Kesarwani"  
published: 2014-09-01  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/2093/explain-the-cookie-less-session-and-its-working  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Explain the cookie less session and its working.

ASP.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" />

## Answers

### Answer by Sumit Kesarwani

ASP.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" />


---

Original Source: https://www.mindstick.com/interview/2093/explain-the-cookie-less-session-and-its-working

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
