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

ViewState in Dynamic Control

Rate me:
Please Sign up or sign in to vote.
4.81/5 (15 votes)
22 Apr 2009CPOL2 min read 110.5K   3.1K   28  
Maintaining ViewState while working with Dynamic Control
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class UserControl_ContactDetails : System.Web.UI.UserControl
{
    protected void Page_Load(object sender, EventArgs e)
    {
        //Retain the state of controls
        txtAddress1.Text = Request.Form[txtAddress1.UniqueID];
        txtAddress2.Text = Request.Form[txtAddress2.UniqueID];
        txtCity.Text = Request.Form[txtCity.UniqueID];
        txtFirstName.Text = Request.Form[txtFirstName.UniqueID];
        txtLastName.Text = Request.Form[txtLastName.UniqueID];
        txtZip.Text = Request.Form[txtZip.UniqueID];
    }
}

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
Team Leader Softwebsolutions INC
India India

Profiles : Code Project, ASP.NET Forums

Blog : Knowledgebase
World


Current Company : Softwebsolution
INC


User Group : Ahmedabad SQLServer UserGroup

Other : Microsoft Certified Technology Specialist (MCTS)

Comments and Discussions