2
Reply

.NET/ASP.NET Interview Question - Elaborate differentiation between ViewState and SessionState?

Shivprasad Koirala

Shivprasad Koirala

13 years ago
3.9k
0
Reply

    For Maintaining State we use. Viewstate is page level maintain the state. Viewstate's data is store in hidden html control in intercepted format.Session use through out the page. different users has different session id. session data stores in web server. Session ID store in cookies, If cookies is disable then attach with url.

    Pramod Verma
    9 years ago
    0

    Answer:

    SessionState and ViewState are used to store data value when an respective postback occurs.

    SessionState is used to store Value till the user end's the session.
    ViewState is used to store Value for the current page only and when we switch to other page the data value of the previous page is lost.

    Session is Server type storage whereas View is a client type storage.

    Session provide higher security as compared to View as the data value is stored on server side.

     

    Regards,

    Please click here to see more .NET/ASP.NET interview questions

    Shivprasad Koirala
    13 years ago
    0