Results 1 to 1 of 1
-
08-24-2010, 02:55 PM #1
- Join Date
- Apr 2008
- Location
- Boston, USA
- Posts
- 13,172
- Thanks
- 744
- Thanked 699 Times in 550 Posts
- Blog Entries
- 4
- Feedback Score
- 4 (100%)
ActiveTabChanged Event Not Firing - AjaxControlToolkit
ActiveTabChanged of Ajaxcontroltoolkit can be used to call up the server side event handler.
Lot of people using Tabs control from AjaxControlToolkit complain ActiveTabChanged event isnt firing on tab change.
Only reason it wont work if you forget to put the AutoPostBack="True" for the TabContainer.
Sample code:
<ajaxToolkit:TabContainer ID="TabContainer1" runat="server" OnActiveTabChanged="TabContainer_ActiveTabChanged" AutoPostBack="true">
.....................
</ajaxToolkit:TabContainer>
On code behind:
protected void TabContainer_ActiveTabChanged(object sender, EventArgs e)
{
//........do whatever you need to do
}Free Classified Ads & BUSINESS/PROFESSIONAL SOCIAL NETWORK
Similar Threads
-
ajaxcontroltoolkit requires asp.net 4.0 scripts
By manik in forum ASPReplies: 0Last Post: 07-22-2010, 12:28 PM -
CalendarExtender AjaxControlToolkit - ASP .NET
By manik in forum ASPReplies: 0Last Post: 05-20-2010, 02:20 PM -
Business event notifier
By oscarcruise in forum ServicesReplies: 0Last Post: 02-16-2010, 09:20 AM -
Business event notifier
By oscarcruise in forum General BusinessReplies: 0Last Post: 02-16-2010, 09:20 AM -
Yahoo Boos Jerry Yang Firing Line, says top analyst
By BrainPulse in forum Search Engine OptimizationReplies: 2Last Post: 10-24-2008, 07:58 PM


Reply With Quote

