Here is my code below. I'm stumped. I've tried everything I can find on the internet, I've tried everything I know to do. I can see the button is firing however it's not performing a postback on the page or in the update panel from what I can tell. The whole purpose of this is to fade the status label out which is not occurring. Any help would be greatly appreciated. I'm pulling out what little hair I have left.
Things I've tried:
- Putting the table and button outside the update panel
- Removing the trigger
- Removing the event portion of the trigger
- Adding "ChildrenAsTriggers" both True and False
- Tried using a different trigger
<asp:UpdatePanel ID="CategoryUpdatePanel" runat="server"><ContentTemplate><table style="margin-top: 10px; margin-bottom: 10px; width: 750px;"><tr><td style="text-align: right; width: 150px;">Category Name:</td><td><asp:TextBox ID="txtCategoryName" runat="server" Width="200px" CssClass="textboxappearance" MaxLength="45"></asp:TextBox></td><td style="text-align: center;">Status:<asp:CheckBox ID="chkCategoryStatus" runat="server" Checked="True" /></td><td><asp:Button ID="btnSaveCategory" runat="server" Text="Save Category" /></td></tr><tr><td colspan="4"><asp:Label ID="lblCategoryStatus" runat="server" Width="400px" Font-Size="Large" Text="Category Added Successfully"></asp:Label></td></tr></table></ContentTemplate><Triggers><asp:AsyncPostBackTrigger ControlID="btnSaveCategory" EventName="Click" /></Triggers></asp:UpdatePanel><ajaxToolkit:AnimationExtender ID="CategoryUpdatePanel_AnimationExtender" runat="server" TargetControlID="CategoryUpdatePanel" Enabled="True"><Animations><OnClick><FadeOut Duration=".5" Fps="20" /></OnClick></Animations></ajaxToolkit:AnimationExtender>