Click here to Skip to main content
15,886,805 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 Controls_ItemSummary : System.Web.UI.UserControl
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    protected override void OnPreRender(EventArgs e)
    {
        imgItem.ImageUrl = itemImageURL; // sets the Image to be shown in heading
        lblSummary.Text = itemSummary;
    }

    /// <summary>
    /// to get item summary
    /// </summary>
    private string itemSummary;
    public string ItemSummary
    {
        get { return itemSummary; }
        set { itemSummary = value; }
    }

    /// <summary>
    /// to get set item image URL
    /// </summary>
    private string itemImageURL;
    public string ItemImageURL
    {
        get { return itemImageURL; }
        set { itemImageURL = value; }
    }
}

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