Sunday, March 11, 2012

TabContainer Problem in PageLoad

Hi,
If you want to have tab panels in your tab container, you should either add them programmatically or by declaration in your ASPX/ASCX file.

Example for your ASPX/ASCX page:

<ajaxcc:TabContainer ID="tabContainer1" runat="server"> <ajaxcc:TabPanel ID="tabPanel1" runat="server" HeaderText="Tab 1"> <ContentTemplate> </ContentTemplate> </ajaxcc:TabPanel> <ajaxcc:TabPanel ID="tabPanel2" runat="server" HeaderText="Tab 2"> <ContentTemplate> </ContentTemplate> </ajaxcc:TabPanel> <ajaxcc:TabPanel ID="tabPanel3" runat="server" HeaderText="Tab 3"> <ContentTemplate> </ContentTemplate> </ajaxcc:TabPanel></ajaxcc:TabContainer>

Kind regards,

sbogus.


No comments:

Post a Comment