O
Opa
Hi,
I'm using the TabStrip webcontrol and am trying to navigate to a different
page
based on the tab index that was selected. My problem is that the selected
index
change does not fire.
I have the following code behind:
private void TabStrip1_SelectedIndexChange(object sender, System.EventArgs e)
{
switch (TabStrip1.SelectedIndex)
{
case 0:
// navigate to page here
break;
case 1:
// navigate to page here
break;
}
}
Any ideas?
Thanks,
Opa
I'm using the TabStrip webcontrol and am trying to navigate to a different
page
based on the tab index that was selected. My problem is that the selected
index
change does not fire.
I have the following code behind:
private void TabStrip1_SelectedIndexChange(object sender, System.EventArgs e)
{
switch (TabStrip1.SelectedIndex)
{
case 0:
// navigate to page here
break;
case 1:
// navigate to page here
break;
}
}
Any ideas?
Thanks,
Opa