< ajaxToolkit:TabPanel - would like to set "focus" on a different tab - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T01:23:49Z http://stackoverflow.com/feeds/question/314494 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/314494/-ajaxtoolkittabpanel-would-like-to-set-focus-on-a-different-tab 1 < ajaxToolkit:TabPanel - would like to set "focus" on a different tab Swoosh 2008-11-24T15:34:23Z 2008-11-24T15:46:16Z <p>i have a &lt; 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#314529 1 Answer by technophile for < ajaxToolkit:TabPanel - would like to set "focus" on a different tab technophile 2008-11-24T15:46:16Z 2008-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>&lt;aspToolkit:TabPanel ID="TabPanel1" runat="server" ActiveTabIndex="1"&gt;...&lt;/aspToolkit:TabPanel&gt;</code></p>