I have a tabstrip containing 2 tabs which are visible and have 3rd tab which is not visible (Visible="false"). On button click (server side) if all the validations and statements are executed correctly, I want third tab to be visible and selected. My code is as below
protected void Button2_Click(object sender, EventArgs e)
{
RadTabStrip1.Tabs[2].Visible = true;
RadTabStrip1.SelectedIndex = 2;
RadTabStrip1.FindTabByText("Summary").Visible = true;
}
but this is not happening. the 3rd tab doesnt appears at all.
Appreciate your help
Pankaj