cookieless="false". in sessionState
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
what is the means for cookieless="false". is it means that session data would be stored in cookies
Mahendra
Session ID[^] is stored in the cookie. Understand How the ASP.NET Cookieless Feature Works[^]
-
what is the means for cookieless="false". is it means that session data would be stored in cookies
Mahendra
We all know that Session State is bad, as it won't allow us to scale applications in web farms - but now with the .NET framework Microsoft tells us it is OK to use Session state again. This can be used by using cookieless. In this dot net creates and store some unique name toeach cookie request. Amit