Hi,
I have added 4 tabs in my webtab. When the Page loads, i want to show only select tabs. ie., On page load in the server side., i am getting a value from the database and depending upon the values that are returned i want to show only select tabs.. for example.., i want to show only 2 tabs instead of four using the values from database..can you please tell me on how to do it?. and also i want to change the select tab ie.. i want the user to see the tab[3] instead of tab[0] during runtime...?.
Thanks..,,
Jollyguy
to remove a tab:tabObject.Tabs.FromKey("TABNAME_KEY").Visible = false;
you can also tabObject.Tabs[1].Visible = false;
on clientsite you can also use: oWebTab.Tabs[1].setVisible(false);