Hi Pavan,
I regret for the delay in getting back to you.
Currently we do not provide any support for adding custom controls inside the TabStrip. The TabStrip can be considered like a panel that is capable of adding TabStripItems to that. The collection of the TabStripItems is called the TabItemCollection. The first set of parent TabStripItems is a set of collection, where, each item contains its own set of Child TabStripItems. In such a collection, you will not be able to add a Label, which is a normal ASP Control.
Please try the below code to understand the same.
[C#]
string str = this.TabStrip1.ID.ToString();
foreach (TabStripItem parenttab in this.TabStrip1.Items)
{
//Returns the first TabStripItem - First Parent Item.
str = str+ "" + parenttab.ID.ToString();
foreach (TabStripItem childitem in parenttab.Items)
{
//Returns the Child under each parent tab.
str = str + "
" + childitem.ID.ToString();
}
}
Response.Write(str.ToString());
Please try this and let me know if this helps.
Regards,
Nanda