Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
ASP .Net
ASP .Net Datagrid Control
Reg- Dynamic tab strip and Multipage
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Yalaman, post: 4263205"] Tying to create Dynamic tab strip and Multipage using webcontols . Not able to wire the event selectedindexchanged event to tabstrip any sample code or links will be very helpfull Thanks what is am trying to do inpage class is tabStrip= new TabStrip(); tabStrip.ID="Tab Strip"; tabStrip.SelectedIndex=0; tabStrip.BackColor=Color.Red; tabStrip.SelectedIndexChange +=new EventHandler(tabStrip_SelectedIndexChange); for (int i =0;i<array.Count;i++) { tab= new Tab(); tab.Text=array[i]+"||".ToString(); tab.DefaultStyle.CssText="width:100px;text-align:center;color:Red"; tabStrip.Items.Add(tab); } this.Controls.Add(tabStrip);[/i] [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
ASP .Net
ASP .Net Datagrid Control
Reg- Dynamic tab strip and Multipage
Top