How to add tab to tabcontainer in Ajax in Asp.Net ? plz help me?
krish asked:
how to add a tab dynamically to the tab container in ajax in asp.Net….plz help to find this..
how to add a tab dynamically to the tab container in ajax in asp.Net….plz help to find this..

This is pretty simple – in C#,
using AjaxControlToolkit;
private void AddContainer()
{
AjaxControlToolkit.TabContainer tc = new AjaxControlToolkit.TabContainer();
//add the control to your page
this.form1.Controls.Add(tc);
}