How To Hide GridView column using javascript How To Set The Column Width Of a GridView
Oct 06

function setActiveTab(tabNumber)
{
var ctrl = $find(’<%=TabContainer.ClientID%>’);
ctrl.set_activeTab(ctrl.get_tabs()[tabNumber]);
}

this is a function that sets the active tab using javascript so you just set the anchor’s href to look like this:
<a href=’setActiveTab(1)’>Go to Next Tab;

Leave a Reply