ASP.NET Session Management Day 28

Lecture 28 : ASP.NET Session Management Stateless Protocol : Stateless Protocols are the type of network protocols in which Client send request to the server and server response back according to current state. It does not require the server to retain session information or a status about each communicating partner for multiple request. Some features of Stateless Protocols : Stateless Protocol simplify the design of Server. The stateless protocol requires less resources because system do not need to keep track of the multiple link communications and the session details. In Stateless Protocol each information packet travel on it’s own without reference to any other packet. Each communication in Stateless Protocol is discrete and unrelated to those that precedes or follow. 1) Why is http Stateless Protocol ? HTTP is called as a stateless protocol because each request is executed independently, without any knowledge of the requests that were execu...