P
Polaris
Read a few books on ASP.NET and seems to me all of them say that HTTP is
stateless (as a result, it is a complex job to maintain the session state of
a web application ,,, blaa, blaaaa...). I just wonder if this statement is
correct? HTTP runs on top of TCP; and TCP is a connection-oriented protocol
in which each conversation (session) is established through a 3-way
handshaking and the session state is maintained by the TCP stack until the
client signals to end the conversation (in ASP.NET's web application, this
action could be the user's explicit "logout", or his session expires).
ANY thoughts on this is appreciated.
Thanks
stateless (as a result, it is a complex job to maintain the session state of
a web application ,,, blaa, blaaaa...). I just wonder if this statement is
correct? HTTP runs on top of TCP; and TCP is a connection-oriented protocol
in which each conversation (session) is established through a 3-way
handshaking and the session state is maintained by the TCP stack until the
client signals to end the conversation (in ASP.NET's web application, this
action could be the user's explicit "logout", or his session expires).
ANY thoughts on this is appreciated.
Thanks