a question about the state when stored on the server

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hello!

These states Session,Application and Cache are stored on the server so my
question is that I assume that no information about these is sent to the
browser on the client side ?
is that correct understood.

//Tony
 
Hello!

These states Session,Application and Cache are stored on the server so my
question is that I assume that no information about these is sent to the
browser on the client side ?
is that correct understood.

//Tony

How would the web server know which clients to send any information
to?
How would it send such data?
What would interpret the data when it got there?
 
These states Session,Application and Cache are stored on the server so my
question is that I assume that no information about these is sent to the
browser on the client side ?
is that correct understood.

Yes.

Only view state and cookies are stored client side.

Note that the identification of session is stored client
side (in a cookie or in the URL), but the data stored
in the session is not.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top