Click here to Skip to main content
15,893,190 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.2K   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;
using WebUtilities;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {        
        PostDataHelper helper = new PostDataHelper(Request, Response);
        //Set Form Name, by which receiving page may identify posting page
        helper.FormName = "Person Form";
        //Add objects with unique keys
        helper.Data.Add("Person1", new Person("ABC", "XYZ"));
        helper.Data.Add("Person2", new Person("123", "456"));
        //Call method to post data
        helper.RedirectWithData("Default2.aspx");
    }
}

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