I'm trying to use TabPanels inside of a TabContainer. Each of the TabPanels contains an iFrame with src specified. The problem I'm having...The panels will not adjust in size according to the content and content is not being displayed. If I don't use frames and simply place all markup/content within the <ContentTemplate> tags, the panels' size adjusts to accomodate. Is there a trick to getting the TabPanels to work with iFrame?
<cc1:TabContainer runat="server" ID="Tabs" OnClientActiveTabChanged="ActiveTabChanged">
<cc1:TabPanel runat="Server" ID="Panel1" HeaderText=" Page1 ">
<ContentTemplate>
<iframe src ="WebForm1.aspx"width="100%" height="100%" scrolling="no" frameborder="0"></iframe>
</ContentTemplate>
</cc1:TabPanel>
<cc1:TabPanel runat="Server" ID="Panel2" HeaderText=" Page2 " >
<ContentTemplate>
<iframe src ="WebForm2.aspx" width="100%" height="100%" scrolling="no" frameborder="0"></iframe>
</ContentTemplate>
</cc1:TabPanel>
<cc1:TabPanel runat="Server" ID="Panel3" HeaderText=" Page3 " >
<ContentTemplate>
<iframe src ="WebForm3.aspx" width="100%" height="100%" scrolling="no" frameborder="0"></iframe>
</ContentTemplate>
</cc1:TabPanel>
</cc1:TabContainer>