Click here to Skip to main content
15,886,689 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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UCDeclaratively.aspx.cs" Inherits="UCDeclaratively" %>

<%@ Register Src="Controls/ItemSummary.ascx" TagName="ItemSummary" TagPrefix="uc1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<!-- 
Author:Aysha Qaiser
Description: Creating UserControls Declaratively 
-->

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Creating User Controls Declaratively</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="lblHeading" runat="server" Text="Creating User Controls Declaratively" Font-Bold=true 
            ForeColor=Black  /><br />
            
        <!--Instance of UserControl added at design time-->
        <uc1:ItemSummary ID="ItemSummary1" runat="server" ItemSummary="My Summary goes here"
            ItemImageURL="~/App_Themes/Images/monitor.gif" />
    </div>
    </form>
</body>
</html>

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