Me.WebTab1.ClientEvents.AjaxSubmitted = "WebTab1_AjaxSubmitted"
this.WebTab1.ClientEvents.AjaxSubmitted = "WebTab1_AjaxSubmitted";
// The client event AjaxSubmitted takes two parameters sender and e // sender is the object which is raising the event // e is the TabItemEventArgs function WebTab1_AjaxSubmitted(sender, e) { var tab = sender; //Gets the index of the tab raising the client event var tabIndex = e.get_tabIndex(); //Gets the collection of tabs var tabs = tab.get_tabs(); //Gets the text of the tab raising the event var tabText = tabs[tabIndex].get_text(); //Assuming you have a label called labelOutput on the form var label = $get('labelOutput'); label.innerHTML = "Ajax submitted for tab with index " + tabIndex; }