What is the difference between SessionState and ViewState in ASP.NET?
|
|
Session State contains information that is pertaining to a specific session (by a particular client/browser/machine) with the server. It's a way to track what the user is doing on the site.. across multiple pages...amid the statelessness of the Web. e.g. the contents of a particular user's shopping cart is session data. Cookies can be used for session state. |
|||
|
|
|
Session state is saved on the server, ViewState is saved in the page. Session state is usually cleared after a period of inactivity from the user (no request happened containing the session id in the request cookies). The view state is posted on subsequent post back in a hidden field. |
|||||
|
|
SessionState
ViewState
|
||||
|
|
|
Usage: If you're going to store information that you want to access on different web pages, you can use SessionState If you want to store information that you want to access from the same page, then you can use Viewstate Storage The Viewstate is stored within the page itself (in encrypted text), while the Sessionstate is stored in the server. The SessionState will clear in the following conditions
|
|||
|
|
|
Session is used mainly for storing user specific data [ session specific data ]. In the case of session you can use the value for the whole session until the session expires or the user abandons the session. Viewstate is the type of data that has scope only in the page in which it is used. You canot have viewstate values accesible to other pages unless you transfer those values to the desired page. Also in the case of viewstate all the server side control datas are transferred to the server as key value pair in __Viewstate and transferred back and rendered to the appropriate control in client when postback occurs. |
||||
|
|
|
SessionState persist the data of particular user in the server. This data available till user close the browser or session time completes. View State are valid mainly during postbacks and information is stored in client only. Viewstate are valid for serializable data only. Moreover Viewstate are not secured as data is exposed to client. although we can configure page directive and machine key to make view state encrypted. Where in case of session this is user specific data that is stored in server memory . Session state is valid for any type of objects. We can take help of session through different web pages also. |
|||
|
|

