How often is session information sent to the web server from the browser once the session information has been established?
How often is session information sent to the web server from the browser once the session information has been established?
Once the session information has been established, it is sent to the web server with every subsequent request. This is because the session data, typically stored in a cookie, needs to be sent with each request to maintain state and identify the user across multiple requests.
B. With every subsequent request?