Hi Boranet,
Thanks for posting your question here. You can do that via our client side Javascript interface:
1. Put the following JavaScript code in your page:
Code: JavaScript
function SwitchTab(index)
{
var tabStrip = eo_GetObject("TabStrip1");
tabStrip.setSelectedIndex(index);
}
Note you may need to replace "TabStrip1" with the
ClientID of your TabStrip control.
2. You can then call it from any DHTML element. For example from a link:
Code: HTML/ASPX
<a href="javascript:SwitchTab(1);">Switch to the second tab</a>
This way you will be able to switch to any tab with a button.
Please feel free to let us know if you have any other questions.
Thanks