Author: europhreakNET | Posted on: 2/12/2010 5:26:34 AM | Views : 1204

I have a control called DundasChart.ascx where I specify a public property chartDate:
 
    public DateTime chartDate {
        get { return m_Date; }
        set { m_Date = value; }
    }


then on my aspx page I have this:
<form id="form1" runat="server">
    <asp:Panel ID="myPanel" runat="server">
                <CC:DundasChart runat="server" ID="ccDundasChart1" />
                <CC:DundasChart runat="server" ID="ccDundasChart2" />
                <CC:Dunda ...

Go to the complete details ...