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

Creating Instances of UserControls Declaratively and Programmatically

Rate me:
Please Sign up or sign in to vote.
4.09/5 (6 votes)
2 Feb 2010CPOL6 min read 37.2K   307   17  
This articles explains creating Instance of User Controls Declaratively and Programmatically
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class UCProgrammatically : System.Web.UI.Page
{
    //instance of the user control using controls class name
    protected ASP.Controls_ItemSummary ucItemSummary;

    protected void Page_Load(object sender, EventArgs e)
    {
        for (int i = 1; i < 5; i++)
        {
            //Load Control
            ucItemSummary = (ASP.Controls_ItemSummary)LoadControl("~/Controls/ItemSummary.ascx");

            //Set Control properties
            ucItemSummary.ItemSummary = "My Control " + i.ToString();
            ucItemSummary.ItemImageURL = "~/App_Themes/Images/monitor.gif";

            //Break between the controls
            phControlHolder.Controls.Add(new LiteralControl("<br/>"));

            //Add Control to the Place Holder
            phControlHolder.Controls.Add(ucItemSummary);
        }
    }

}

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
Software Developer
Pakistan Pakistan
I WORK in C# ...

Comments and Discussions