hve a tab container with 10 tabs each with unique id
on a hyperlink click i need to make some tabs visible true false,
in hyperlink i am passing a query string param
if the param="Y"
param = Request.QueryString["type"];
if (param == "Y")
{
for (int tc = 0; tc <= TabContainer1.Tabs.Count - 1; tc++)
{
if (TabContainer1.Tabs[tc].ID == "Y")
{
TabContainer1.Tabs[tc].Visible = true;
}
else
{
TabContainer1.Tabs[tc].Visible = false;
}
}
}
ihve the above condition
but on this click the tabcontainer is not at all visible but without any parameter passig the tab conrainer is visible