2
Reply

Explain Session state management options in ASP.NET.

Rajeev Prajapati

Rajeev Prajapati

Jun 24, 2013
2.7k
0

    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;

    Pramod Lawate
    August 27, 2013
    0

    it manages the users information with in web server.session is nothing but duration.information can be stored through cookies.

    Srikanth Reddy
    July 09, 2013
    0