2
Answers

ViewState In Asp.Net

nitin bhardwaj

nitin bhardwaj

12y
1.1k
1
What is ViewState In Asp.Net?
Answers (2)
0
Satyapriya Nayak

Satyapriya Nayak

NA 53k 8m 12y
Hi Nitin,


The View State is client state mechanism in the ASP.Net statement management.

The view state is control it will be used to maintain the state of the control across the posted back to the server. The value will be stored in the hidden control. Every time it needs to encryption and decryption (serialize and deserialize across the post backs).

The view state can be enabled by setting the property called EnableViewState="true/false".  It can be set in the machine config/ web config/ page directives/ control level.

By default it is false. You can enable it by setting boolean flag.

This can be used with in the page and not across the page.

Viewstate["Version"] = txtVersionName.Text.ToString();

The view state also can store the data using the key and value combination. The data will be serialized and stored in the hidden control You can view the source code page and find the hidden control with _viewstate.


Drawbacks:
- Increase the page payload (when you have grid with many rows then every thing has to be loaded and retain again with serialize and deserilize)
- Additional overhead while serialize and deserialize.
- Increase the memory allocation on the server.

Please refer the below link

http://msdn.microsoft.com/en-us/library/ms972976.aspx


------------------------------------------------------------------------------



Example

protected void Button1_Click(object sender, System.EventArgs e) 
    { 
        ViewState["FavoriteColor"] = TextBox1.Text.ToString(); 
        ViewState["City"] = TextBox2.Text.ToString(); 
        Label1.Text = "Your data saved in ViewState."; 
    } 
    protected void Button2_Click(object sender, System.EventArgs e) 
    { 
        string color = (string)ViewState["FavoriteColor"]; 
        string city = (string)ViewState["City"]; 
 
        Label1.Text = "Hi your favorite color is: " + color + 
                "<br />and you came from: " + city; 
    }



Thanks
0
Hemant Kumar

Hemant Kumar

NA 3k 215k 12y
Hi Nitin,

View State is used to Store the information for User in the Page Level.This is one of the State Management Technique.

http://www.dotnetspider.com/forum/158843-view-state-asp.net.aspx