i have a < ajaxToolkit:TabPanel initially when the page loads, the first tab is "open" ("focused on")

can i do something (preferably server side) so my second tab would be the "default" selected tab?

link|improve this question
feedback

1 Answer

Set the TabPanel's ActiveTabIndex to 1 in your Page.Load handler:

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
        TabPanel1.ActiveTabIndex = 1;
}

You can also set it in the markup: <aspToolkit:TabPanel ID="TabPanel1" runat="server" ActiveTabIndex="1">...</aspToolkit:TabPanel>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.