where are session variables stored on client?
Session variables are stored on the server. What is stored in a cookie is the session id. It is used to restore the session variables on the server when client’s postback arrives.I believe the only thing stored on the client will be your session ID in a cookie. The actual data is on the server. The server links the data to the client via that id. If you set cookieless=”true” in web.config, your session ID will be embedded in the URL.