Click here to Skip to main content
15,892,809 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="UCProgrammatically.aspx.cs" Inherits="UCProgrammatically" %>

<!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 Programmatically
-->

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Creating Instances of User Controls Programmatically</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="lblHeading" runat="server" Text="Creating User Controls Programmatically" Font-Bold=true 
            ForeColor=Black  /><br />
            
       <!-- Panel to add the user controls created at runtime-->
       <asp:PlaceHolder ID="phControlHolder" runat="server">
       </asp:PlaceHolder>
    </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