Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi im confused how to do a simple thing.
1) Im using dotnet 3.5 and i cannot upgrade to dotnet 4.
2) Im using ajax tabcontainer and ajax tab panel 3) No tab should be selected on page load

but instead it shows first tab selected heres my code

<ajaxToolkit:TabContainer runat="server"        
         Style="margin-left: 0px"
        ActiveTabIndex="0" <!-- i also commented it but still first tab is selected by default-->
        AutoPostBack="false"        
        TabStripPlacement="Top"
        CssClass="Tab"
        ScrollBars="None"> 
        <ajaxToolkit:TabPanel runat="server"    ID="tp1">
            <ContentTemplate>
            </ContentTemplate>
        </ajaxToolkit:TabPanel>
        <ajaxToolkit:TabPanel runat="server"  ID="tp2">
               <ContentTemplate>
            </ContentTemplate>
        </ajaxToolkit:TabPanel>
    </ajaxToolkit:TabContainer>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.