Use ViewState to store object list (C#) : ViewState « Sessions « ASP.NET Tutorial

Home
ASP.NET Tutorial
1.ASP.Net Instroduction
2.Language Basics
3.ASP.net Controls
4.HTML Controls
5.Page Lifecycle
6.Response
7.Collections
8.Validation
9.Development
10.File Directory
11.Sessions
12.Cookie
13.Cache
14.Custom Controls
15.Profile
16.Configuration
17.LINQ
18.ADO.net Database
19.Data Binding
20.Ajax
21.Authentication Authorization
22.I18N
23.Mobile
24.WebPart
25.XML
ASP.NET Tutorial » Sessions » ViewState 
11.5.3.Use ViewState to store object list (C#)
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
    </div>
    </form>
</body>
</html>

File: Default.aspx.cs

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page 
{
    [Serializable]
    class Person
    {
        public string first = "first";
        public string last = "last";
        public string blog = "http://www.java2s.com";
    }
    protected void Page_Load(object sender, EventArgs e)
    {
        Person[] people = new Person[500];
        for (int i = 0; i < people.Length; i++)
        {
            people[inew Person();
        }
        ViewState["Folks"= people;
    }

    private string _pageGuid = null;
    public string PageGuid
    {
        get
        {
            if (_pageGuid == null)
                _pageGuid = this.Request.Form["__VIEWSTATE_KEY"];
            if (_pageGuid == null)
                _pageGuid = Guid.NewGuid().ToString();
            return _pageGuid;
        }
        set
        {
            _pageGuid = value;
        }
    }

    protected override object LoadPageStateFromPersistenceMedium()
    {
        return Session[this.PageGuid];
    }

    protected override void SavePageStateToPersistenceMedium(object viewState)
    {
        RegisterHiddenField("__VIEWSTATE_KEY"this.PageGuid);
        Session[this.PageGuid= viewState;
    }

}
11.5.ViewState
11.5.1.Disable ViewState for a certain control
11.5.2.Trim view state
11.5.3.Use ViewState to store object list (C#)
11.5.4.Use ViewState to store object list (VB)
11.5.5.Insert view state data in Page render event (C#)
11.5.6.Insert view state data in Page render event (VB)
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.