What is Session State?

A session is define as the period of time that a unique user interacts with a Web application.Session state is a collection of object,tied to a session are stored on a server.
Session state is nothing more than memory in the shape of a dictionary or hash table,e.g. key value pairs,which can be set and read for the duration of a user's session.For example, a user selects stocks to track and the Web application can store these values in the user's ASP session instance:

Session("Stocks")="MSFT;VRSN;GE"

No comments:

Post a Comment