Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.
http://forums.asp.net/t/1127834.aspx
you can use the following javascript function to set the active tab:
function SetActiveTab(tabControl, tabNumber){ var ctrl = $find(tabControl); ctrl.set_activeTab(ctrl.get_tabs()[tabNumber]);}
tabControl: ID from the TabContainer ControlstabNumber: Number of the new Tab (starting at 0)
Or
$find('<%=TabContainer1.ClientID%>').get_activeTabIndex();
and
$find('<%=TabContainer1.ClientID%>').set_activeTabIndex(2);
Remember Me