In ASP.NET, I\'m a bit confused about role of cookies in session state.
Whats is the difference between normal session state and cookieless session state?
The cookie less session doesn't use a cookie is user's browser to store session state. Instead it stores the session either in the page itself or in the url. Read here for a comparison.