0

I am using ASP.Net session and want to know what the behaviour will be when the user browser does not support cookies. I have tested this on a prototype where I blocked third party cookies and its was storing values in session and i was able to retrieve it. Can anyone clarify?

Poornima

  • What browser are you using that doesn't support cookies? Unless you have cookieless sessions enabled, your scenario is impossible. – Ant P Jul 04 '14 at 17:57
  • The session ID cookie won't be a third-party cookie. The domain of the cookie will match the domain of the page which sets it, making it a first-party cookie. – Richard Deeming Jul 04 '14 at 17:59

1 Answers1

0

As stated in ASP.NET MVC and using cookieless sessions, cookieless sessions are not supported by ASP.NET anymore. There used to be a cookieless session mode (which worked by rewriting the URL, see e.g. here), but this seems to be deprecated.

Community
  • 1
  • 1
MartinStettner
  • 28,719
  • 15
  • 79
  • 106