Hi,
I have three different tabs called Search, Home and ItemDetail. The Search Tab has detailed result set and there is an hyperlink column also. When the user clicks on the hyperlink column, the results should display on the ItemDetail tab, not in a separate window. How should I do that dynamically.
I need to create a separte tab dynamically and display the result in that . Or else I can create it at design view itself, make it as visible =false at first time. But where I will make the property as true when the user clicks on it?
Anybody please help? I'm using this control for the first time.
Thanks
Hello,
You can accsess the property Visible by property Tabs[index] (where index is zero based) of UltraWebTab
UltraWebTab1.Tabs[0].Visible = true;
Hopes this helps.