Hi there,
Please look at my below code and please let me know why there is a page refresh at autopostback field when updatepanels are in AccordionPane.
I tested the below code without Accordion there its perfect no page refresh but when enclosing in Accordion and trying then at textbox textchanged event time its reloading the entire page.
Please help to resolve the issue.
<cc1:Accordion ID="Accordion1" runat="server">
<Panes>
<cc1:AccordionPane ID="test" runat="server">
<Header>
<h1>Heading Test</h1>
</Header>
<Content>
<asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
<ContentTemplate>
<asp:TextBox ID="TextBox1" AutoPostBack="true" runat="server" OnTextChanged="TextBox1_TextChanged1">< ...
Go to the complete details ...