In my Infragistics Tab Container, I have three tabs. While loading the page, it is opening with the first tab only. But is there any way that I can make 2nd or 3rd as default tab? That means while loading the page, it should open with the 2nd Tab and not the first one. Please help.
Thanks
Hello,
Maybe you can try using the SelectedTabIndex property of the tabstrip istance, e.g.
UltraWebTab1.SelectedIndex = 2 (this will select the 3rd tab, since tabs are zero based).
Please, let me know if this helps.
ya..It worked fine. Perfect. Thanks