Click here to Skip to main content
15,891,423 members
Articles / Web Development / ASP.NET

Post Serialized Objects (Data) in ASP.NET

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
25 Feb 2013CPOL2 min read 23.1K   143   5  
This is helper class to post serialized objects (Data) to other page in asp.net.
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;

/// <summary>
/// Summary description for Person
/// </summary>
[Serializable]
public class Person
{
    private string _FirstName = string.Empty;

    public string FirstName
    {
        get { return _FirstName; }
        set { _FirstName = value; }
    }

    private string _LastName = string.Empty;

    public string LastName
    {
        get { return _LastName; }
        set { _LastName = value; }
    }
        
    public Person(string firstname, string lastname)
    {
        _FirstName = firstname;
        _LastName = lastname;
    }

    public override string ToString()
    {
        return FirstName + " " + LastName;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer TCS
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions