The session state is used to maintain the session of each user throughout the application. Session allows information to be stored in one page and access in another page and support any type of object.Whenever user enters into website new session id will generate for that user. This session Id will delete when he leave from that application. If he enters again he will get new session Id.
Eg. Session["FirstName"] = txtfName.Text;