What is session state?
· The heavy weight of state management, it allows information to store in one page to another.
· It supports any type of object, which includes custom data types.
· It also uses the same collection syntax as view state.
· It is also considered similar to application state. However, session stated scopes only current browser(user session) and only available to that session unlike application state which scopes the entire application.
