Session
Session is most popular state management technique in Web Application. It is user specific means every thread Session variable get created when user starts work.
Actually session uses key value pair to store data internally. We can store and display data in session variable both by key and index.
Commencement of a Session:
- A new user requests an ASP file includes a Session_OnStart procedure.
- A value is stored in a Session variable.
- A user requests an ASP file uses the
Leave a comment