| Author: priya narayan 05 Jul 2009 | Member Level: Gold | Rating:  Points: 2 |
TabContainer control is a very simple to use.Just place the required controls in different tab panels and trap the ActiveTabChanged event and do all the necessary actions which suit your application requirements.
In ActiveTabChanged event :
try { if (TabContainer1.ActiveTabIndex == 0) { //Do } if (TabContainer1.ActiveTabIndex == 1) { //Do } if (TabContainer1.ActiveTabIndex == 2) { //Do }
For more informn Refer : http://www.codeproject.com/KB/ajax/AJAXTabControl.aspx
Thanks and Regards Priya
"Motivation is a fire from within. If someone else tries to light that fire under you, chances are that it will burn very briefly." - Stephen Covey
|
| Author: pradeep 05 Jul 2009 | Member Level: Silver | Rating:  Points: 2 |
jsut drag the control add new tabs with the name you want.
|