< ajaxToolkit:TabPanel - would like to set "focus" on a different tab - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T01:23:49Zhttp://stackoverflow.com/feeds/question/314494http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314494/-ajaxtoolkittabpanel-would-like-to-set-focus-on-a-different-tab1< ajaxToolkit:TabPanel - would like to set "focus" on a different tabSwoosh2008-11-24T15:34:23Z2008-11-24T15:46:16Z
<p>i have a < ajaxToolkit:TabPanel
initially when the page loads, the first tab is "open" ("focused on")</p>
<p>can i do something (preferably server side) so my second tab would be the "default" selected tab?</p>
http://stackoverflow.com/questions/314494/ajaxtoolkittabpanel-would-like-to-set-focus-on-a-different-tab/314529#3145291Answer by technophile for < ajaxToolkit:TabPanel - would like to set "focus" on a different tabtechnophile2008-11-24T15:46:16Z2008-11-24T15:46:16Z<p>Set the TabPanel's ActiveTabIndex to 1 in your Page.Load handler:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
TabPanel1.ActiveTabIndex = 1;
}
</code></pre>
<p>You can also set it in the markup: <code><aspToolkit:TabPanel ID="TabPanel1" runat="server" ActiveTabIndex="1">...</aspToolkit:TabPanel></code></p>