---
title: "If cookies are disabled in client browser will session work"  
description: "If cookies are disabled in client browser will session work"  
author: "Anonymous User"  
published: 2011-05-23  
updated: 2020-09-17  
canonical: https://www.mindstick.com/interview/1010/if-cookies-are-disabled-in-client-browser-will-session-work  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# If cookies are disabled in client browser will session work

The session cookie is a special non-persistant cookie. It's only stored in memory, so in most cases even when cookies are disabled it still works fine.

It's also possible to enable something called cookieless sesssions where the sessionID is embedded in the URL, like this:

http://abc.com/data/ (encrypted session ID here) /abc.aspx

## Answers

### Answer by Anonymous User

The session cookie is a special non-persistant cookie. It's only stored in memory, so in most cases even when cookies are disabled it still works fine.

It's also possible to enable something called cookieless sesssions where the sessionID is embedded in the URL, like this:

http://abc.com/data/ (encrypted session ID here) /abc.aspx


---

Original Source: https://www.mindstick.com/interview/1010/if-cookies-are-disabled-in-client-browser-will-session-work

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
