Posted on: 7/7/2014 9:03:55 AM | Views : 375

I Have a scenario in which i want to use 5 tabcontainer at one page,but when i was applying it scrolls to the middle of a page. How to solve this issue??

My Sample Code:

<asp:TabContainer ID="TabContainer1" Height="270" runat="server" Width="100%" > <asp:TabPanel ID="TabPanel1" runat="server" Width="100%" Style="overflow: auto;"> <HeaderTemplate> About Us </HeaderTemplate> <ContentTemplate> .... </ContentTemplate> </asp:TabPanel> </asp:TabContainer> <br /> <asp:TabContainer ID="TabContainer2" Height="270" runat="server" Width="100%" > <asp:TabPanel ID="TabPanel2" runat="server" Width="100%" Style="overflow: auto;"> <HeaderTemplate> A ...

Go to the complete details ...