Click here to Skip to main content
15,886,782 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
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ItemSummary.ascx.cs" 
    Inherits="Controls_ItemSummary" ClassName="Controls_ItemSummary" %>

<!-- This is a very simple example of Item Summary Control , 
    with an image of item in one cell and its description in second cell
   
->
<table cellpadding="0" cellspacing="0" runat="server" width="100%" id="tblUC" border="1">
    <tr>
        <td width="15%">
            <asp:Image ID="imgItem" runat="server" AlternateText="No ImageAvaliable"/>
        </td>
        <td>
            <asp:Label ID="lblSummary" runat="server"/>
        </td>
    </tr>
</table>

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