Im trying to programatically add a Tab control to the tab list and automatically goto that tab as selected.
MY code below isnt working to do this..
Any ideas what im missing? I cant seem to find any programatic reference on this control. And its not supported by MS. I also need to be able to change tabs progamatically. like change tab 2 , 3, 4 .. etc. text values etc. Any helpers??
Jason
---
LexiMedia, LLC Development Group
MY code below isnt working to do this..
Code:
Dim Tab1 As New Microsoft.Web.UI.WebControls.Tab()
Tab1 = New Microsoft.Web.UI.WebControls.Tab()
Tab1.Text = "Privacy Policy"
'Add to TabStrip
tsHoriz.Items.Add(Tab1)
tsHoriz.SelectedIndex = 7
Jason
---
LexiMedia, LLC Development Group